.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 19px;
}

.otp-page,
.profile-page {
    min-height: calc(100vh - 190px);
    display: grid;
    place-items: center;
    padding: 22px 0;
}

.otp-card,
.profile-card {
    width: min(100%, 470px);
    padding: 28px;
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(24, 58, 38, 0.12);
}

.otp-icon,
.profile-avatar {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 23px;
    color: #214b35;
    background: #e7f1eb;
    font-size: 34px;
}

.otp-card h1,
.profile-card h1 {
    margin: 8px 0;
    text-align: center;
    font-size: 25px;
}

.otp-card > div > p,
.profile-card > p {
    margin: 0 0 22px;
    color: #758178;
    line-height: 1.8;
    text-align: center;
    font-size: 13px;
}

.otp-kicker {
    display: block;
    color: #c99345;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.otp-card label,
.profile-form label {
    display: block;
    margin: 0 0 8px;
    color: #425148;
    font-size: 12px;
    font-weight: bold;
}

.phone-field {
    display: grid;
    grid-template-columns: auto 1fr;
    overflow: hidden;
    min-height: 53px;
    border: 1px solid #e4e9e5;
    border-radius: 16px;
    background: #f9fbfa;
}

.phone-field span {
    display: flex;
    padding: 0 14px;
    align-items: center;
    border-left: 1px solid #e4e9e5;
    color: #516057;
    direction: ltr;
    font-size: 12px;
}

.phone-field input,
.otp-code-input,
.profile-form input {
    width: 100%;
    min-height: 52px;
    padding: 11px 14px;
    border: 1px solid #e4e9e5;
    border-radius: 16px;
    outline: none;
    background: #f9fbfa;
}

.phone-field input {
    border: 0;
    border-radius: 0;
    direction: ltr;
    text-align: left;
}

.phone-field:focus-within,
.otp-code-input:focus,
.profile-form input:focus {
    border-color: #7aa08a;
    box-shadow: 0 0 0 4px rgba(33, 75, 53, 0.08);
}

.otp-code-input {
    letter-spacing: 10px;
    direction: ltr;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.otp-primary-button,
.profile-form button {
    width: 100%;
    min-height: 53px;
    margin-top: 16px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: #214b35;
    font-weight: bold;
    cursor: pointer;
}

.otp-primary-button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.otp-secondary-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.otp-secondary-actions button {
    padding: 8px 0;
    border: 0;
    color: #214b35;
    background: transparent;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.otp-secondary-actions button:disabled {
    color: #98a19b;
    cursor: default;
}

.otp-message {
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 14px;
    line-height: 1.7;
    font-size: 12px;
    text-align: center;
}

.otp-message.success {
    color: #176a3f;
    background: #dcf6e8;
}

.otp-message.error {
    color: #9d3030;
    background: #ffe3e3;
}

.otp-security-note {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #e4e9e5;
    color: #758178;
    line-height: 1.7;
    text-align: center;
    font-size: 10px;
}

.profile-form {
    margin-top: 20px;
}

.profile-form input {
    margin-bottom: 14px;
}

.customer-logout-form {
    margin-top: 14px;
}

.customer-logout-form button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 15px;
    color: #a22e2e;
    background: #ffe6e6;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 520px) {
    .otp-card,
    .profile-card {
        padding: 22px 17px;
        border-radius: 22px;
    }

    .otp-page,
    .profile-page {
        padding-top: 10px;
    }
}
