/* LOGIN PAGE */

body.login-body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1f6f2f, #2e7d32);
}

/* Login Card */
.login-card {
    background: #ffffff;
    padding: 40px 35px;
    width: 340px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    text-align: center;
}

/* Logo / Title */
.login-card h2 {
    margin-bottom: 5px;
    color: #1f6f2f;
    font-weight: bold;
}

.login-card .subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 25px;
}

/* Inputs */
.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.login-card input:focus {
    border-color: #1f6f2f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(31, 111, 47, 0.15);
}

/* Button */
.login-card button {
    width: 100%;
    padding: 12px;
    background: #1f6f2f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.login-card button:hover {
    background: #165524;
    transform: translateY(-1px);
}

/* Error Message */
.error {
    background: #ffe0e0;
    color: #b00020;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 13px;
}

/* Success Message */
.success {
    background: #e0f4e7;
    color: #1f6f2f;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 13px;
}

/* Links */
.login-links {
    margin-top: 15px;
    font-size: 13px;
}

.login-links a {
    color: #1f6f2f;
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}
.login-card button.register-btn {
    background: #2e7d32;
}

.login-card button.register-btn:hover {
    background: #1f6f2f;
}