@font-face {
    font-family: 'Exo2-Regular';
    src: url('../../../../fonts/Exo2-Regular.ttf');
}

@font-face {
    font-family: 'Exo2-Bold';
    src: url('../../../fonts/Exo2-Bold.ttf');
}

@font-face {
    font-family: 'Exo2-Medium';
    src: url('../../../fonts/Exo2-Medium.ttf');
}

@font-face {
    font-family: 'Exo2-SemiBold';
    src: url('../../../fonts/Exo2-SemiBold.ttf');
}

:root {
    --default-font: "Exo2-Regular";
}

body {
    background-color: var(--bs-body-bg);
    font-family: var(--default-font) !important;
}


#auth {
    height: 100vh;
    overflow-x: hidden;
}

#auth #auth-right {
    height: 100%;
    background: linear-gradient(90deg, #1d6ccc, #2d499d);
}

#auth #auth-left {
    padding: 5rem;
}

#auth #auth-left .auth-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1d6ccc !important;
}

#auth #auth-left .auth-subtitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #a8aebb;
}

#auth #auth-left .auth-logo img {
    height: 2rem;
}

#auth #auth-left form {
    margin-bottom: 3rem;
}

#auth #auth-left form button {
    background-color: #1d6ccc !important;
}

#auth #auth-left form button:hover {
    background-color: #FBC51B !important;
    color: #FFFFFF;
    border: unset !important;
}

@media screen and (max-width: 1399.9px) {
    #auth #auth-left {
        padding: 3rem;
    }
}

@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 5rem;
    }
}

@media screen and (max-width: 576px) {
    #auth #auth-left {
        padding: 5rem 3rem;
    }
}

html[data-bs-theme=dark] {
    background: linear-gradient(90deg, #1d6ccc, #2d499d);
}