@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.pw-auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 1rem;
    background-color: #f1f5f9; /* bg-slate-100 */
}

.pw-auth-card {
    width: 100%;
    max-width: 24rem; /* max-w-sm */
    padding: 2.5rem;
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
}

.pw-auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pw-logo {
    width: 6rem; /* w-24 */
    margin: 0 auto 1rem;
}

.pw-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #1e293b; /* text-slate-800 */
    text-align: center;
}

.pw-subtitle {
    margin-top: 0.5rem;
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-slate-500 */
    text-align: center;
}

.pw-input-group {
    margin-bottom: 1.25rem;
}

.pw-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f8fafc; /* bg-slate-50 */
    border: 1px solid #cbd5e1; /* border-slate-300 */
    border-radius: 0.5rem; /* rounded-lg */
}

.pw-button {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: #4f46e5; /* bg-indigo-600 */
    border: none;
    border-radius: 0.5rem; /* rounded-lg */
    cursor: pointer;
    transition: background-color 0.2s;
}

.pw-button:hover {
    background-color: #4338ca; /* hover:bg-indigo-700 */
}

.pw-footer-link {
    text-align: center;
    font-size: 0.875rem; /* text-sm */
    color: #475569; /* text-slate-600 */
    margin-top: 1.5rem;
}

.pw-footer-link a {
    font-weight: 500;
    color: #4f46e5; /* text-indigo-600 */
    text-decoration: none;
}

.pw-footer-link a:hover {
    text-decoration: underline;
}

.pw-error, .pw-success {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-align: center;
}

.pw-error {
    background-color: #fee2e2; /* bg-red-100 */
    color: #b91c1c; /* text-red-700 */
    border: 1px solid #fca5a5;
}

.pw-success {
    background-color: #dcfce7; /* bg-green-100 */
    color: #166534; /* text-green-800 */
    border: 1px solid #86efac;
}

.pw-radio-label {
    display: block;
    font-size: 0.875rem;
    color: #334155; /* text-slate-700 */
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.pw-radio-options {
    display: flex;
    gap: 1.5rem;
}
.pw-radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}
