/* ============================================================
   CssLogin.css — Login Page Styles
   Produce Fresh Market System
   Standard Font: Calibri 13px
   ============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
input, button, label, p, div, span {
    font-family: 'Calibri', Calibri, sans-serif;
    font-size: 13px;
}

body {
    background: #eef7eb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── WRAPPER ── */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px;
}

/* ── CARD ── */
.login-card {
    background: #ffffff;
    border: 0.5px solid #d4e8ce;
    border-radius: 12px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 380px;
}

/* ── LOGO ── */
.login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-company-name {
    font-size: 22px;
    font-weight: 700;
    color: #2d6b25;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.login-logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #c8e6c2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.login-logo-icon i {
    font-size: 22px;
    color: #3b7d2e;
}

.login-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #2d6b25;
    letter-spacing: 1.5px;
}

.login-logo-sub {
    font-size: 11px;
    color: #7aab72;
    margin-top: 2px;
}

/* ── ERROR ── */
.login-error {
    background: #fceee9;
    border: 0.5px solid #f0c4b4;
    border-radius: 6px;
    padding: 9px 12px;
    color: #b04820;
    font-size: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.login-error i {
    font-size: 12px;
    flex-shrink: 0;
}

/* ── FORM ── */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #5a7f54;
    margin-bottom: 5px;
}

.form-group label i {
    font-size: 11px;
    margin-right: 4px;
    color: #7aab72;
}

.form-group input {
    width: 100%;
    padding: 8px 11px;
    border: 0.5px solid #d4e8ce;
    border-radius: 6px;
    font-family: 'Calibri', Calibri, sans-serif;
    font-size: 13px;
    color: #2d6b25;
    background: #f9fcf8;
    outline: none;
    transition: border-color 0.13s;
}

.form-group input:focus {
    border-color: #5aab4e;
    background: #ffffff;
}

.form-group input::placeholder {
    color: #b0cead;
}

/* ── BUTTON ── */
.login-btn {
    width: 100%;
    padding: 9px;
    margin-top: 6px;
    background: #4a8f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Calibri', Calibri, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.13s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.login-btn:hover {
    background: #3b7d2e;
}

.login-btn i {
    font-size: 13px;
}

/* ── FOOTER ── */
.login-footer {
    font-size: 11px;
    color: #9abf93;
    text-align: center;
}
