/*---------------------------*/
/*---- css-01-global.css ----*/
/*---------------------------*/

:root {
    --text-color: #353535;
    --secondary-text-color: #afafaf;
    --primary-color: #1d5485;
    --secondary-color: #f0b783;
    --third-color: #69b799;
    --fourth-color: #86c5d2;
    --fifth-color: #efaeb9;
    --sixth-color: #aed4c2;
    --white-color: #ffffff;
    --black-color: #000000;
}

/*---------------------------*/
/*---------------------------*/

body {
    font-family: "Montserrat", sans-serif !important;
}

body a {
    text-decoration: none !important;
}

.auth-container {
    display: flex;
    justify-content: center;
    min-height: 50vh;
}

.auth-box {
    width: 100vw;
    height: 100vh;
    display: flex;
    background-image: url(https://www.brainandcare.com/wp-content/uploads/2021/04/brain-e-care.jpg);
    background-position: unset;
    background-size: cover;
    background-repeat: no-repeat;
}

.auth-text {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff00;
    border-radius: 5px 0px 0px 5px;
}

.auth-form {
    width: 35%;
    align-content: center;
    border-radius: 0px 5px 5px 0px;
    padding: 30px;
    background: var(--secondary-text-color);
}

body.login-page {
    height: 100vh !important;
    background: #CFD5DA;
}

.login-card-body,
.register-card-body {
    padding: 0px !important;
    border-radius: 5px;
}

.title-login {
    color: #ffffff00;
    font-size: 40px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 30px;
}

.subtitle-login {
    color: #ffffff00;
    font-size: 18px;
    font-weight: 400;
    text-align: right;
}

button.btn.btn-block.btn-flat.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    border: none;
    padding: 10px 5px 10px 5px;
}

.auth-form.card.m-5 {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: min-content;
    padding: 2rem;
    color: var(--white-color);
    align-self: center;
    border: solid 2px var(--white-color);
    border-radius: 40px;
}

/* ================================
            MEDIA QUERIES
   ================================ */

/* --- Small devices (≥576px) --- */
@media (min-width: 576px) {}

/* --- Medium devices (≥768px) --- */
@media (min-width: 768px) {}

/* --- Large devices (≥992px) --- */
@media (min-width: 992px) {}

/* --- Extra large devices (≥1200px) --- */
@media (min-width: 1200px) {}

/* --- XXL devices (≥1400px) --- */
@media (min-width: 1400px) {}