* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mainContainer{
    display: flex;
    justify-content: center;
    height: 100vh;
    background-color: #5A5F63;
}
.mainContainer2{
    display: flex;
    justify-content: center;
    height: 100%;
    background-color: #5A5F63;
}
.form {
    margin-top: 5%;
    height: 75%; position: relative; /* Ensures absolute positioning works inside */
    padding-bottom: 60px;
    width: 25vw;
    background-color: #dddddd;
    border-radius: 5px;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #013E74;
    background-color: rgb(146, 146, 146);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.f1{
    border-right: 1px solid white;
}
.footer div{
    width: 50%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.form img{
    height: 70px;
    border-radius: 5px;
    width: 25vw;
}
.contactHeader{
    margin-top: -3px;
    height: 50px;
    align-items: center;
    background-color: #0041AA;
    display: flex;
}
.contactHeader h2 {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0);
    font-family: Verdana, Helvetica, Consolas, sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-variant: normal;
    margin-left: 20px;
    font-kerning: auto;
    font-optical-sizing: auto;
    font-stretch: 100%;
    font-variation-settings: normal;
    font-feature-settings: normal;
    text-transform: none;
    text-decoration: none;
    text-align: start;
    text-indent: 0px;
}
#ContactForm p{
    margin-top: 30px;
    width: 90%;
    margin-bottom: 20px;
    margin-left: 5%;
}
#warning{
    color: red;
    font-size: 14px;
}

#ContactInput::placeholder {
    font-size: 18px; /* Adjust size as needed */
    color: gray; /* Optional: Change placeholder color */
    font-weight: bold; /* Optional: Make it bold */
    opacity: 1; /* Ensures full visibility in some browsers */
}

#ContactForm input{
    margin-left: 5%;
    padding-left: 10px;
    border-radius: 5px;
    height: 45px;
    font-size: large;
    width: 90%;
    border: 1px solid rgb(175, 175, 175);
}
#ContactForm a{
    margin-top: 10px;
    margin-left: 40%;
    color: green;
}
#continue{
    height: 45px;
    width: 90%;
    margin-left: 5%;
    font-size: large;
    color: white;
    margin-top: 30px;
    background-color: #0041AA;
    border: none;
    border-radius: 5px;
}
#password, #username {
    height: 45px;
    margin-top: 10px;
    width: 90%;
    padding-left: 10px;
    font-size: large;
    margin-left: 5%;
    border-radius: 4px;
    border: 1px solid #dadada;
}
.form label {
    margin-left: 5%;
    margin-bottom: -15px;
    color: #000000;
    background-color: rgba(0, 0, 0, 0);
    font-family: Verdana, Helvetica, Consolas, sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-kerning: auto;
    font-optical-sizing: auto;
    font-stretch: 100%;
    font-variation-settings: normal;
    font-feature-settings: normal;
    text-transform: none;
    text-decoration: none;
    text-align: start;
    text-indent: 0px;
}
.logIn{
    height: 45px;
    width: 90%;
    margin-left: 5%;
    font-size: large;
    color: white;
    background-color: #0041AA;
    border: none;
    border-radius: 5px;
}
#rememberMeToggle{
    width: 20px;
    height: 20px;
    margin-left: 5%;
}
.fp{
    font-size: 14px;
    margin-top: 10px;
    margin-left: 65%;
    color: rgb(57, 57, 255);
}
.rem{
    border: 2px solid #dddddd;
    display: flex;
    margin-bottom: 20px;
}
#rememberMeLabel{
    margin-left: 5px;
}
#ContactForm{
    margin-top: 5%;
    height: 75%;
    width: 25vw;
    background-color: #dddddd;
    border-radius: 5px;
}
#otpForm{
    height: 75% !important;
}
#otpForm p{
    margin-top: 30px;
    width: 90%;
    margin-bottom: 20px;
    margin-left: 5%;
    text-align: center;
}
#otpForm input{
    margin-left: 5%;
    padding-left: 10px;
    height: 45px;
    font-size: large;
    border-radius: 5px;
    width: 90%;
    border: 1px solid rgb(175, 175, 175);
}
#otpForm button {
    height: 45px;
    width: 90%;
    margin-left: 5%;
    font-size: large;
    color: white;
    background-color: #0041AA;
    border: none;
    border-radius: 5px;
}
#VerificationForm p{
    margin-top: 30px;
    width: 90%;
    margin-bottom: 20px;
    margin-left: 5%;
    text-align: center;
}
.pinfo{
    width: 90%;
    margin-left: 5%;
}

@media screen and (max-width: 1000px) {
    #otpForm{
        height: 530px !important;
    }
    #VerificationForm{
        height: 700px !important
    }
    #ContactForm{
        height: 530px !important;
    }
    .form{
        width: 92% !important;
        margin-top: 5% !important;
        height: 530px !important;
    }
    .form img{
        width: 100% !important;
    }
}
