/* Minimal Style Login Page */
.minimal-style .login-container {
    max-width: 380px;
    width: 90%;
    margin: 30px auto;
}

.minimal-style .login-card {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    padding: 40px 30px;
    text-align: center;
    width: 100%;
}

.minimal-style .login-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    max-width: 100%;
}

.minimal-style h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.minimal-style .lead-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.minimal-style .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.minimal-style .form-control {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 15px;
    width: 100%;
}

.minimal-style .form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.minimal-style .form-check {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.minimal-style .form-check-input {
    margin-right: 8px;
}

.minimal-style .btn-primary {
    background-color: #4e73df;
    border: none;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.minimal-style .btn-primary:hover {
    background-color: #2e59d9;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.minimal-style .btn-link {
    color: #4e73df;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}

.minimal-style .btn-link:hover {
    text-decoration: underline;
}

.minimal-style .login-footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #adb5bd;
}

/* Responsive Styles */
@media (max-height: 700px) {
    .minimal-style .login-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .minimal-style h2 {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .minimal-style .lead-text {
        margin-bottom: 15px;
    }
    
    .minimal-style .form-group {
        margin-bottom: 15px;
    }
    
    .minimal-style .login-footer {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .minimal-style .login-card {
        padding: 25px 20px;
    }
    
    .minimal-style .login-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .minimal-style h2 {
        font-size: 1.5rem;
    }
    
    .minimal-style .lead-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .minimal-style .form-control {
        height: 45px;
        font-size: 14px;
    }
    
    .minimal-style .btn-primary {
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .minimal-style .login-card {
        padding: 20px 15px;
    }
    
    .minimal-style .login-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .minimal-style h2 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .minimal-style .lead-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .minimal-style .form-group {
        margin-bottom: 12px;
    }
    
    .minimal-style .form-control {
        height: 40px;
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .minimal-style .form-check {
        margin-bottom: 15px;
    }
    
    .minimal-style .btn-primary {
        height: 40px;
        font-size: 13px;
    }
    
    .minimal-style .login-footer {
        margin-top: 15px;
        font-size: 0.75rem;
    }
} 