﻿body {
    background-color: var(--secondary-background) !important;
}

.wave {
    position: fixed;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}


hr {
    margin: 10px 0 !important;
    margin-bottom: 5px !important;
    border: 1px solid var(--border-primary);
}

.copyright-lbl {
    font-weight: bold;
    font-size: 12px;
}

.admin-workers {
    position: absolute;
    left: 15%;
    top: 30%;
    width: 500px;
    height: 500px;
    background: url('/Content/images/logos/elements-admin-dark.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.login-container {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-background);
    border-radius: 4px;
    border: 2px solid var(--border-primary);
    padding: 25px;
    width: 450px;
}

.exs-img {
    width: 250px;
}

.mode-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--primary-background);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-login {
    font-weight: bold !important;
}

.validation {
    font-weight: bold;
    color: firebrick;
}

@media(max-width: 1900px) {
    .login-container {
        right: 10%;
    }
}

@media(max-width: 1500px) {
    .admin-workers {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media(max-width: 1300px) {
    .admin-workers {
        display: none;
    }

    .login-container {
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }

    .wave {
        display: block;
    }
}

@media(max-width: 500px) {
    .login-container {
        width: calc(100% - 6px);
    }
}