/* ══════════════════════════════════════════════════════════
   Login Page
══════════════════════════════════════════════════════════ */

.amites-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8edf5 0%, #dce6f5 100%);
}

.amites-login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 1rem;
}

.amites-login-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(24, 90, 189, .13);
    padding: 2.5rem 2.25rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

/* Brand – logo + isim + motto */
.amites-login-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #f0f2f5;
}

.amites-login-brand__logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(145deg, #185abd, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 4px 14px rgba(24, 90, 189, .35);
}

.amites-login-brand__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -.3px;
}

.amites-login-brand__motto {
    font-size: .8rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Form alanları */
.amites-login-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.amites-login-label {
    font-size: .83rem;
    font-weight: 600;
    color: #374151;
}

/* Hata */
.amites-login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .83rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Buton */
.amites-login-actions { margin-top: .2rem; }
.amites-login-btn { width: 100%; }

/* Footer */
.amites-login-footer {
    text-align: center;
    font-size: .77rem;
    color: #9ca3af;
}
