/* General Styles */
body.login.gradient-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #e2dde7 0%, #257dfc 100%);
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Container */
.login-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 20px;
    transition: all 0.3s ease;
}

.login-container:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Card Header */
.card-header {
    background: linear-gradient(to right, #35889ced, #2a7a48);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-logo img, .site-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.card-header h1 {
    margin: 0;
    font-size: 24px;
}

/* Card Body */
.card-body {
    padding: 30px;
    text-align: center;
}

.card-body h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.card-body .description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.error-message {
    color: #d9534f;
    background: rgba(217, 83, 79, 0.1);
    padding: 10px;
    border: 1px solid #d9534f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.error-message svg {
    margin-right: 10px;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.input-field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
}

.input-field label {
    font-weight: bold;
    margin-bottom: 5px;
}

.input-field input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.password-hint {
    text-align: left;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.password-hint .hint-label {
    font-weight: bold;
}

.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #3c5839;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button svg {
    margin-left: 10px;
}

.submit-button:hover {
    background: #2c7a2a;
}

/* Footer Text */
.footer-text {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #666;
}