@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
}
:root {
  --bg: #2784d3;
  --gray: #01a3c20d;
  --black: #0b1b36;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
button {
  cursor: pointer;
  border-radius: 5rem;
  color: white;
}
body {
  background: #f4faff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: auto;
}

p {
  font-size: 1.6rem;
  font-weight: 600;
}
.form {
  background: white;
  padding: 5rem;
  padding-top: 0;
  border-radius: 1rem;
  color: var(--black);
  text-align: center;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-bottom: 5px solid var(--bg);
}
.form h3 {
  font-size: 4rem;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}
.form p {
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.8;
}
.tnx {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img {
  width: 40%;
  aspect-ratio: 1/0.6;
  overflow: hidden;
}
@media (max-width: 600px) {
  .form {
    padding: 3rem 2rem;
  }
  .form h3 {
    font-size: 3rem;
  }
  .form p {
    font-size: 1.6rem;
  }
  .img {
    width: 80%;
    aspect-ratio: 1/0.6;
    overflow: hidden;
  }
}

.hide {
    display: none;
}

.red-text {
    color: red !important;
}
