@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}




/* ############### Login Page ##################### */


.main-login {
    width: 100%;
    height: 100vh;
    background-image: url("../img/LoginPageBG.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    position: relative;
}

.login-center {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.main-login-box {
    border-radius: 16px;
    background: linear-gradient(255deg, rgba(0, 0, 0, 0.25) 3.41%, rgba(255, 255, 255, 0.10) 89.58%);
    box-shadow: 0 25px 20px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5.5px);
    padding: 30px 50px;
    width: 550px;
    font-family: "Inter", sans-serif;
}


.loginForm input {
    width: 100%;
    padding: 12px 25px !important;
    border-radius: 15px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Inter", sans-serif;
    height: initial !important;
}

input#LoginWithCaptcha1_loginBox_Login1_LoginButton {
    font-weight: 700;
    font-size: 18px;
}

.form-group p {
    max-width: 230px;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.156%;
}

.form-group a {
    font-size: 15px;
    text-align: center;
    color: #fff;
}

.brand-logo-fx {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginHeading h2 {
    color: #fff !important;
    text-align: center;
    font-family: Inter;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

form.loginForm input {
    padding: 12px 25px;
    border-radius: 15px;
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Inter", sans-serif;
}

form.loginForm input::placeholder {
    color: #000 !important;
}

form.loginForm input:focus {
    box-shadow: none !important;
}

button.login-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

button.login-btn i {
    font-size: 25px;
}

form.loginForm p {
    max-width: 230px;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.156%;
}

form.loginForm a {
    font-size: 15px;
    text-align: center;
    color: #fff;
}

.brand-logo-fx img {
    object-fit: cover;
}




/* ################ media Query ##############  */





@media(max-width:1024px){
    
    .brand-logo-fx img {
        width: 170px;
    }
    .login-center {
        padding: 0 20px;
    }
    .loginHeading h2 {
        font-size: 24px;
    }
    .main-login-box {
        padding: 20px 30px;
    }
    form.loginForm input {
        font-size: 15px;
    }
    button.login-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    form.loginForm p {
        font-size: 12px;
    }
    form.loginForm a {
        font-size: 12px;
    }
}


@media(max-width:767px){

    .brand-logo-fx img {
        width: 170px;
    }
    .login-center {
        padding: 0 20px;
    }
    .loginHeading h2 {
        font-size: 24px;
    }
    .main-login-box {
        padding: 20px 30px;
    }
    form.loginForm input {
        font-size: 15px;
    }
    button.login-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    form.loginForm p {
        font-size: 12px;
    }
    form.loginForm a {
        font-size: 12px;
    }

}
@media (max-width: 576px) {
         .main-login-box {
               width: 100%;
            
    }
}