/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-box {
    background: #f5f5f0;
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo {
    margin-bottom: 8px;
}

.login-logo img {
    max-width: 200px;
    height: auto;
}

.login-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 2px;
    font-weight: 500;
}

.login-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.login-subtitle .signin-link {
    color: #5b6fd8;
    font-weight: 600;
    text-decoration: none;
}

.form-group {
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #5b6fd8;
}

.signin-btn {
    width: 100%;
    padding: 14px;
    background: #5b6fd8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.signin-btn:hover {
    background: #4a5bc4;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
}

.keep-signed {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.keep-signed input[type="checkbox"] {
    cursor: pointer;
}

.forgot-link {
    color: #5b6fd8;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.signup-text {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.signup-link {
    color: #5b6fd8;
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    text-decoration: underline;
}

.error-message {
    background: #ffe6e6;
    color: #d32f2f;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    display: none;
}

.error-message.show {
    display: block;
}