/* Login page - Paddy Photo Print Station */
.page-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(180deg, #e8f0fe 0%, #f8fafc 40%, #ffffff 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.login-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.login-logo {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5007d;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.login-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.35rem;
}

.login-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.login-alert {
    margin-bottom: 1.25rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.4rem;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap-icon-left .input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-wrap input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap input::placeholder {
    color: #94a3b8;
}

.input-wrap input:focus {
    outline: none;
    border-color: #e5007d;
    box-shadow: 0 0 0 3px rgba(229, 0, 125, 0.12);
}

.login-helper {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0.4rem 0 0;
}

.btn-login {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.25rem;
    margin-top: 0.5rem;
    background: #e5007d;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-login:hover {
    background: #c9006e;
}

.btn-login:active {
    transform: scale(0.99);
}

.btn-login .btn-arrow {
    flex-shrink: 0;
}

.login-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 1.25rem 0 0;
}
