/* 
  Modern Login Redesign
  Theme: Glassmorphism / Clean UI 
*/
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* A subtle modern gradient background */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
}

.modern-login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.modern-login-card:hover {
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.05);
}

.login-title {
    font-weight: 800;
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.login-subtitle {
    color: #7f8c8d;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.custom-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-input {
    width: 100%;
    padding: 0.75rem 0.95rem;
    font-size: 0.75rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #fff;
    border-color: #4B49AC;
    box-shadow: 0 0 0 4px rgba(75, 73, 172, 0.1);
    outline: none;
}

.custom-btn {
    background: linear-gradient(to right, #4B49AC, #5d5bce);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(75, 73, 172, 0.3);
}

.custom-btn:hover {
    background: linear-gradient(to right, #5d5bce, #4B49AC);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 73, 172, 0.4);
}

.custom-btn:active {
    transform: translateY(0);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #4B49AC;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}