.page{
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: calc(100svh - 160px);
}

.forgot-box{
    background-color: var(--translucid-dark);
    border:1px solid var(--slate-steel);
    border-radius: 10px;
    box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    width: 400px;
    max-width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Montserrat;
    box-sizing: border-box;
    padding:32px;
    color:var(--cloudy-white);
}

.forgot-box>img{
    height: 64px;
    margin-bottom:24px;
}


.forgot-info h2{
    margin:0px 0 10px 0;
    font-size:28px;
    text-align: center;
}


.forgot-info h4{
    font-weight: 500;
    text-align: center;
    margin:0;
}

.forgot-info h5{
    font-weight: 500;
    text-align: center;
    color:white;
    margin:0;
    border:1px solid var(--slate-steel);
    padding:8px;
    border-radius: 6px;
}

.forgot-info h5 b{
    color:var(--main-green);
    font-weight: 700;
}

.entermail-wrapper{
    margin-top: 16px;
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap:16px;
}

.input:hover{
    border-color: #464955;
}
.input:hover .input-img{
    border-color: #464955;
}

.input:focus-within .input-img{
    border-color: #757575;
}

.input:focus-within{
    border-color: #757575;
}

.input:focus-within img {
    filter: brightness(.75);
}

.input{
    display:flex;
    justify-content: center;
    width: 100%;
    height: 44px;
    position: relative;
    border:1px solid var(--slate-steel);
    border-radius: 8px;
    transition:border 150ms ease-in-out;
    margin-top:12px;
    overflow: hidden;
}

.input input{
    height: 100%;
    background-color: var(--graphite);
    border:none;
    outline:none;
    text-indent: 8px;
    font-family: Montserrat;
    color:rgb(211, 211, 211);
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    width:100%;
    font-size:15px;
    padding:0;
    transition: background-color 150ms ease-in-out;
}

.input-merged{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    min-width: 44px;
    border-right: 1px solid var(--slate-steel);
    transition:border 150ms ease-in-out;
}

.input-img img, .input-img img{
    border-radius: 6px 0 0 6px;
    height: 18px;
    width: 18px;
    filter:brightness(.4);
    transition: filter 150ms ease-in-out;
}

.username-errors-wrapper{
    display: flex;
    flex-direction: column;
    gap:3px;
    font-size:14px;
    box-sizing: border-box;
    margin: 0 8px 0 8px;
    padding-top:8px;
    color:var(--crimson-red);
}

.username-errors-wrapper>span{
    display: none;
}

form{
    width: 100%;
}

.entermail-wrapper button{
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 6px;
    border:none;
    cursor: var(--custom-pointer);
    white-space: nowrap;
    padding:8px 16px;
    background-color: var(--azure-blue);
    font-size:16px;
    color:white;
    transition: all 150ms ease-in-out;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:8px;
}

.entermail-wrapper button:disabled{
    filter:brightness(.8);
    cursor:not-allowed;
}

.entermail-wrapper button:hover{
    background-color: #0091ff;
}   

#pwd-error, #pwdrepeat-error, #email-error{
    position: absolute;
    top:10px;
    right:10px;
}

#pwd-error img, #pwdrepeat-error img, #email-error img{
    width:20px;
}




.tooltip1 {
    position: relative;
    text-align: left;
}

.right1 ul{
    padding: 4px 0px 0 14px;
    margin: 0;
    color:white;
}

.right1 li{
    margin: 5px 0 0 0;
}


.tooltip1 .right1 {
    min-width: 310px;
    top: 49%;
    left: -85%;
    margin-left: 20px;
    transform: translate(-20%, -45%);
    padding: 10px 0px 10px 20px;
    background-color: #2d303d;
    font-weight: normal;
    font-size: 13px;
    border-radius: 8px;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s;
}


.right1 a {
    color: white;
    font-size: 14px;
    font-family: Montserrat;
}

.tooltip1 .right1 i {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -12px;
    width: 12px;
    transform: rotate(180deg);
    height: 24px;
    overflow: hidden;
}

.tooltip1 .right1 i::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translate(50%, -50%) rotate(-45deg);
    background-color: #3a4149;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}


#eh-rp{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap:5px;
    width: 100%;
}

#submit-error{
    font-size:12px;
    margin:0;
    width: 200px;
    text-align: center;
    color:rgb(240, 65, 65);
    transition: opacity 150ms ease-in-out;
}


.shw-hide-pwd img{
    height: 16px;
    pointer-events: all;
    position: absolute;
    right: 10px;
    top:13px;
    cursor: var(--custom-pointer);
    filter:brightness(.7);
    transition:filter 150ms ease-in-out;
}

.shw-hide-pwd img:hover{
    filter:brightness(1);
}


.lds-ring {
    display: none;
    width: 16px;
    height: 16px;
 }
 
 .lds-ring div {
     box-sizing: border-box;
     display: block;
     position: absolute;
     width: 16px;
     height: 16px;
     margin: 0px;
 
     border: 2px solid #dfdfdf;
     border-radius: 50%;
     
     animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
     border-color: var(--cloudy-white) transparent transparent transparent;
 }
 
 .lds-ring div:nth-child(1) {
     animation-delay: -0.45s;
 }
 
 .lds-ring div:nth-child(2) {
     animation-delay: -0.3s;
 }
 
 .lds-ring div:nth-child(3) {
     animation-delay: -0.15s;
 }
 
 @keyframes lds-ring {
     0% {
         transform: rotate(0deg);
     }
 
     100% {
         transform: rotate(360deg);
     }
 }


 @media only screen and (max-width: 440px) {
    .forgot-box{
        width: 90vw !important;
    }
    #user-email{
        font-size:14px !important;
    }
}


#user-email{
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid var(--slate-steel);
    padding: 8px;
    border-radius: 6px;
    margin: 10px 0 10px 0;
    font-size: 18px;
    background: #222529;
    box-sizing: border-box;
}

#few-minutes{
    color:var(--mellow-yellow);
    display: flex;
    text-align: center;
    margin:10px 0;
}


#two-accounts{
    width: 100%;
    color:var(--cloudy-white);
    font-family: Montserrat;
    display: flex;
    justify-content: space-evenly;
    margin-top:5px;
    font-size:14px;
}


.radio-button {
    display: flex;
    align-items: center;
    cursor: var(--custom-pointer);
    transition: all 0.2s ease-in-out;
  }

  .radio-button input[type="radio"] {
    display: none;
  }
  
  .radio-checkmark {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border: 1px solid var(--slate-steel);
    border-radius: 50%;
  }
  
  .radio-checkmark:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-green);
    transition: all 0.2s ease-in-out;
  }
  
  .radio-button input[type="radio"]:checked ~ .radio-checkmark:before {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .radio-label {
    font-size: 14px;
    font-weight: 500;
  }