/* Reset & Base Container */
.ps-login-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
}

/* Card Main Shell */
.ps-login-card {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Header & Branding */
.ps-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.ps-app-logo-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00880c 0%, #00b115 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 10px 20px rgba(0, 136, 12, 0.3);
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.ps-login-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.ps-login-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Form Fields */
.ps-form-group {
    margin-bottom: 20px;
    position: relative;
}

.ps-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ps-input-field {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.2s ease;
    box-sizing: border-box;
    outline: none;
}

.ps-input-field:focus {
    background: #ffffff;
    border-color: #00880c;
    box-shadow: 0 0 0 4px rgba(0, 136, 12, 0.12);
}

.ps-input-field::placeholder {
    color: #cbd5e1;
    font-weight: 400;
}

/* Action Button */
.ps-btn-login {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #00880c 0%, #00a00e 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 136, 12, 0.3);
    margin-top: 10px;
}

.ps-btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 136, 12, 0.35);
}

.ps-btn-login:active {
    transform: translateY(0);
}

/* Alert Notification */
.ps-login-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.ps-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.ps-login-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}