body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #011d39;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.aoa-password-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.aoa-password-form {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 12px 40px rgba(1, 29, 57, 0.35);
    box-sizing: border-box;
    border-top: 4px solid #ffb9c6;
}

.aoa-password-form h2 {
    margin: 0 0 20px;
    color: #011d39;
    font-size: 20px;
}

.aoa-password-form label {
    display: block;
    margin-bottom: 8px;
    color: #011d39;
    font-size: 14px;
}

.aoa-password-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
}

.aoa-password-form input[type="password"]:focus {
    outline: none;
    border-color: #011d39;
    box-shadow: 0 0 0 3px #ffb9c688;
}

.aoa-password-form button {
    width: 100%;
    padding: 11px;
    background: #011d39;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.aoa-password-form button:hover {
    background: #012a52;
}

.aoa-password-error {
    background: #ffb9c688;
    color: #011d39;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}
