.waves-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* LOGIN STYLES */

.login-logo {
    width: 50px;
    max-width: 120px;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-container {
    width: 100%;
    height: 100vh;
    background: 
        linear-gradient(
            rgba(var(--sidebar-bg-rgb), 0.98), 
            rgba(var(--sidebar-bg-rgb), 0.98)
        ),
        url('../img/resources/login-bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container-wrapper {
    width: 280px;

}

.login-container-wrapper .login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    margin-bottom: 20px;
    gap: 12px;
}

.login-container-wrapper .login-header h1 {
    font-size: 36px;
    font-weight: 450;
}

.login-container-wrapper .login-header p {
    color: #e8dbdb;
    text-wrap: nowrap;
}

.form-group-alt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-container-wrapper .form-group-alt input {
    background-color: #1c4857;
    border: #1c4857;
    font-weight: 400;
    color: var(--white);
}

.login-container-wrapper .form-group-alt input::placeholder {
    color: #d4d4d4 !important;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: transparent;
    position: relative;
}

.check-icon {
    font-size: 12px;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.checkbox-input:checked + .checkbox-custom .check-icon {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox:hover .checkbox-custom {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
}

.checkbox-text {
    font-weight: 400;
    letter-spacing: 0.3px;
}

