*{
    font-family: "SF Pro Text Regular";
}
@font-face {
    font-family: 'SF Pro Text Regular';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Regular.otf');
}
@font-face {
    font-family: 'SF Pro Text Medium';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Medium.otf');
}
@font-face {
    font-family: 'SF Pro Text Semi Bold';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Semibold.otf');
}

html, body {
    height: 100%;
}

.align-items-stretch {
    align-items: stretch!important;
    display: flex;
    align-items: center !important;
}

.auth-container-for-image-and-form {
    display: flex;
    justify-content: space-between;

}

.logo-image {
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
}

.text-container-for-sign-in {
    padding-top: 48px;
}
.image-container {
    width: 87%;
    margin-left: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    height: calc(100% - 50px);
}
.parent-container-for-form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 460px;
    margin-right: 14.2%; 
    border-radius: 12px;
}



.logo-image-two-girls {
    width: 95%;
}



/* .logo-image svg {
    width: 112px;
    height: 112px;
} */
.form-container {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 390px;
    margin: auto;
}

.form-input-elements {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 15px;
}

.form-lables {
    font-weight: 600;
    font-style: Semibold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #333333;
}

.form-inputs {
    border-radius: 25px;
    background-color: #f9f9f9 !important;
    height: 50px;
    width: 100%;
    max-width: 390px !important;
    padding: 8px 12px;
    border: 1px solid #f9f9f9;
}

.form-inputs:focus {
    border: none;
    outline: none;
}
.form-inputs::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
    
}

p.forget-password-para {
    font-family: "SF Pro Text Regular";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}








/* Outer circle (always visible) */
.custom-radio-circle {
  width: 20px;
  height: 20px;
  border: 3px solid #4C4C4C;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

/* Inner dot — hidden by default */
.custom-radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.form-btn-div {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    width: 100%;
    max-width: 390px !important;
    margin: auto;
}

.form-btn {
    height: 50px;
    width: 390px;
    background-color: #5A90E8;
    border-radius: 50px;
    padding: 13px 40px;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 16px; 
    line-height: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}

.account-prompt {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    color: #232F39;
    margin-bottom: 0px;
}



.parent-container-for-form-and-continue-button {
    display: flex; 
    flex-direction: column; 
    gap: 115px;
}


.forget-password-para  a {
    color:#5A90E8 !important;
    text-decoration: none;
}

.email-icon-and-input-container, .password-icon-and-input-container {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    
}

.password-closed-eye,.password-open-eye {
    cursor: pointer;
    position: absolute;
    right: 15px;
    width: 24px;
    height: 24px;
}

.green-tick-icon {
    position: absolute;
    right: 15px;
    visibility: hidden;
}

@media (max-width:576px) {
    .container-for-sign-up-google,.container-for-sign-up-apple {
        width: 100%;
    }
    .form-btn {
        width: 100%;
    } 
    .parent-container-for-img {
        padding-left: 0px;
        padding-right: 0px;
    }
    .heading {
        font-size: 26px;
        line-height: 50px;
    }
    .description {
        font-size: 18px;
        line-height: 28px;
    } 
}