body {
    margin: 0;
    padding: 0;
}
.container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
  width: 100vw;
  margin: auto;
  height: 100vh;
}

.col:nth-child(1) {
    background-color: #0576f2;
    text-align: center;
    color: #fff;
    font-family: sans-serif;
    display:grid;
    justify-content:end;
}
#container-left {
    width: 100%;
    max-width: 800px;
    padding-top: 5%;
    padding-right: 5%;
}
.tagline {
    max-width: 720px;
    padding: 20px;
    letter-spacing: 1px;
    font-weight: 100;
    font-size: 2.1em;
}
#hero-images-container {
    width: 100%;
    height: 500px;
    margin: auto;
    max-width: 500px;
    position: relative;
    
}

.graident {
    width: 100%; 
    aspect-ratio: 1 / 1;  
    margin: auto;
    border-radius: 100%;
    position: absolute;
    top: 10%;
    background: 
    radial-gradient(
      circle at 80% 50%,
      rgba(5, 118, 242, 0.35) 0%,
      rgba(25, 135, 255, 0.25) 25%, 
      rgba(60, 155, 255, 0.15) 50%, 
      rgba(5, 118, 242, 0.08) 70%,
      rgba(5, 118, 242, 0) 85%
    ),
    linear-gradient(to bottom right, #0576f2, #0463cc);
    position: relative; 
}

.hero-image {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-image:nth-child(2) {
    left: 65%;
    transform: translate(-50%, -50%);
    width: 50%;
}
.hero-image:nth-child(3) {
    right: 65%;
    transform: translate(-80%, -50%);
    width: 50%;
}

#container-right {
    width: 100%;
    max-width: 1200px;
    padding: 5% 10%;
}
/* Contact form */
#logo {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
#logo img {
    width: 100px;
}
.col:nth-child(2) {
    background-color: #fff;
}
* {
  box-sizing: border-box;
}

#form-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  font-family: Arial, sans-serif;
  color: #1f2937;
}

#form-container h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.2;
}

#form-container > p {
  margin: 0 0 65px;
  color: #4b5563;
  font-size: 1rem;
}

.signup-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #374151;
}

.form-group input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
}

.form-group input:focus {
  border-color: #0576f2;
  box-shadow: 0 0 0 2px rgba(5, 118, 242, 0.12);
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 42px;
}

.calendar-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #6b7280;
  pointer-events: none;
}

.form-options,
.terms-row {
  margin-top: 16px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #374151;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.forgot-link,
.terms-row a,
.login-text a {
  color: #0576f2;
  text-decoration: none;
}

.forgot-link:hover,
.terms-row a:hover,
.login-text a:hover {
  text-decoration: underline;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.btn {
  height: 48px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: #0576f2;
  color: #fff;
}

.btn-primary:hover {
  background: #0468d6;
}
#google-btn {
    width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  color: #fff;
  background-color: #202124 !important;
}
.g_id_signin iframe {
  width: 100% !important;
  border-radius: 4px !important;
  background: grey !important;
}


.btn-google:hover {
  background: #263246;
}

.google-g {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.login-text {
  margin-top: 18px;
  text-align: center;
  font-size: 0.92rem;
  color: #4b5563;
}
.app-store-buttons {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}
.app-store-buttons img {
    width: 150px;
    height: 45px;
    margin-right: 10px;
}

/* Mobile: stack */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    #container-left  {
        margin-top: 150px;
        height: 100vh;
    }
    #container-right  {
        margin-top: 10px;
    }
    .form-grid,
    .button-row {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }


    #logo {
        width: 100%;
        max-width: 900px;
        margin: 0 0 20px 0;
        text-align: center;
    }
    #form-container h1 {
        margin: 0 0 8px;
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }

    #form-container > p {
        margin: 0 0 24px;
        color: #4b5563;
        font-size: 1rem;
        text-align: center;
    }

    .graident {
        width: 100%;
        height: 500px;
        margin: auto;
        border-radius: 100%;
        position: absolute;
        top: 10%;
        background: 
        radial-gradient(
        circle at 80% 50%,
        rgba(5, 118, 242, 0.35) 0%,
        rgba(25, 135, 255, 0.25) 25%, 
        rgba(60, 155, 255, 0.15) 50%,  
        rgba(5, 118, 242, 0.08) 70%,
        rgba(5, 118, 242, 0) 85%
        ),
        linear-gradient(to bottom right, #0576f2, #0463cc);
        position: relative; 
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-image:nth-child(2) {
        left: 65%;
        transform: translate(-50%, -50%);
        width: 50%;
    }
    .hero-image:nth-child(3) {
        right: 65%;
        transform: translate(-80%, -50%);
        width: 50%;
    }
    .app-store-buttons {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        padding: 24px;
        text-align: center;
    }
    .app-store-buttons img {
        width: 150px;
        height: 45px;
        margin-right: 10px;
    }
}