/* Layout */
.login-section {
    max-width: 400px;
    margin: 3rem auto;
    padding: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    text-align: center;
}

.login-header .subtext {
    font-size: 0.95rem;
    color: #7f8c8d;
    text-align: center;
}

/* Form */
.form-group {
    margin-bottom: 1.4rem;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #34495e;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #bdc3c7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
    outline: none;
}

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me input {
    margin-right: 0.4rem;
}

.forgot-link {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #1f618d;
}

/* Button */
.btn-login {
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-size: 1.05rem;
}

.btn-login:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

/* Register link */
.register-link {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 0.95rem;
}

.register-link a {
    color: #27ae60;
    font-weight: 500;
    text-decoration: none;
    margin-left: 0.3rem;
}

.register-link a:hover {
    text-decoration: underline;
}
