
    /* Background */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fbfaf4;
}

/* Wrapper */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.login-logo img {
    height: 40px;
    margin-bottom: 40px;
}

/* Titles */
.login-title {
    font-size: 32px;
    font-weight: 600;
    color: #3f4b23;
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 30px;
}

/* Card */
.login-card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Errors */
.error-box {
    margin-bottom: 15px;
    font-size: 13px;
    color: #dc2626;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    color: #343B1B;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    outline: none;
}

.form-group input:focus {
    border-color: #f3e3a1;
}

/* Password */
.password-box {
    position: relative;
}

.password-box .eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.6;
}

/* Remember */
.remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #343B1B;
    margin-bottom: 24px;
}

/* Actions */
.action-row {
    display: flex;
    align-items: center;
    justify-content: end;
}

.forgot {
    font-size: 13px;
    color: #343B1B;
    text-decoration: none;
    margin-right: 20px;
}

.forgot:hover {
    text-decoration: underline;
}

/* Button */
.login-btn {
    background: #f3e3a1;
    border: none;
    padding: 10px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.login-btn:hover {
    opacity: 0.9;
}

/* Footer */
.register-text {
    margin-top: 24px;
    font-size: 14px;
    color: #343B1B;
}

.register-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}