@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, #app{
    height: 100vh;
}

body{
    /*background: url("/images/loginpage2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;*/
    background: radial-gradient(ellipse at right bottom, #EEB1BF 5%, #d42dab 25%, #4d1d63 50%, #030243 100%) !important;
}

.login-blade-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-container{
    width: 30rem;
    display: flex;
    justify-content: center;
}

.login-container .row, .login-container .col-md-8{
    width: 100%;
}

.card{
    background: none !important;
    width: 100%;
}

.card-body{
    width: 100%;
    min-height: 550px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(6px);
    border-radius: 10px;
}

.card-body form{
    width: 100%;
    min-height: 423px;
}

.card-body form input[type="email"], .card-body form input[type="password"], .card-body form input[type="text"]{
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    height: 44px;
}

.forgot_password a{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    color: #FFFFFF;
}

.forgot_password a:hover{
    color: #FFFFFF !important;
}

.card-body form button[type="submit"]{
    width: 70%;
    min-height: 44px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
}

form label{
    color: white;
}

.form-check input, .form-check label{
    cursor: pointer;
}

.form-header-label label, .register-container a{
    font-style: normal;
    font-weight: 800;
    font-size: 36px;
    line-height: 54px;
    color: #FFFFFF;
}