/* Login Page Specific Styles */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}

.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.login-header .logo {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.login-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.login-body {
    padding: 2rem;
}

.login-body .input-group-text {
    background: transparent;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.login-body .input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.login-body .input-group .form-control:focus {
    border-color: #e0e0e0;
    box-shadow: none;
}

.login-body .input-group:focus-within .input-group-text {
    border-color: #667eea;
}

.login-body .input-group:focus-within .form-control {
    border-color: #667eea;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.footer-text {
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}
