/* Checkout Auth Styles copied from React components */
.cab-auth-form * { box-sizing: border-box; }
.cab-auth-form {
    background: #F8F6FC;
    border-radius: 32px;
    padding: 48px 32px;
    width: 100%;
    margin: 0 auto 30px auto;
    text-align: center;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cab-auth-header-wrapper { margin-bottom: 32px; }
.cab-auth-kicker {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #2D1561;
    margin-bottom: 12px;
}
.cab-auth-form h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3B2A63;
    margin-bottom: 12px;
}
.cab-sub {
    font-size: 15px;
    color: #5A4E7A;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 auto;
    max-width: 280px;
}
.cab-field {
    text-align: left;
    margin-bottom: 24px;
    position: relative;
}
.cab-field label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #4C3C73;
    margin-bottom: 12px;
}
.cab-phone-input-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 100px;
    padding: 6px;
    height: 60px;
    box-shadow: 0 4px 16px rgba(45, 21, 97, 0.03);
    border: 1px solid transparent;
    transition: border-color 0.2s;
}
.cab-phone-input-wrapper:focus-within { border-color: #2D1561; }
.cab-phone-input-wrapper.has-error { border-color: #FF4D4F; }
.cab-phone-prefix {
    display: flex;
    align-items: center;
    background: #EBE4F7;
    color: #2D1561;
    font-weight: 600;
    font-size: 15px;
    padding: 0 14px;
    border-radius: 100px;
    height: 48px;
    gap: 8px;
    user-select: none;
}
.cab-phone-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    color: #2D1561;
    height: 100%;
    font-weight: 500;
    box-shadow: none !important;
}
.cab-phone-input:focus { outline: none; box-shadow: none !important; }
.cab-btn-primary {
    width: 100%;
    height: 56px;
    border-radius: 100px;
    background: #2D1561;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cab-btn-primary:hover { opacity: 0.9; }
.cab-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.cab-btn-secondary {
    width: 100%;
    height: 56px;
    border-radius: 100px;
    background: #EBE4F7;
    color: #2D1561;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.cab-btn-secondary:hover { background: #E0D6F2; }
.cab-no-pw-hint {
    font-size: 13.5px;
    color: #9B8EB8;
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.cab-auth-foot {
    margin-top: 36px;
    border-top: 1px solid #EBE4F7;
    padding-top: 28px;
}
.cab-auth-foot h3 {
    font-size: 15px;
    font-weight: 500;
    color: #5A4E7A;
    margin-bottom: 16px;
}
.cab-error-msg {
    color: #FF4D4F;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.cab-otp-input {
    width: 56px;
    height: 64px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 16px;
    background: #FFFFFF;
    color: #2D1561;
    box-shadow: 0 4px 16px rgba(45, 21, 97, 0.04);
    transition: all 0.2s;
}
.cab-otp-input:focus {
    border-color: #2D1561;
    outline: none;
    box-shadow: 0 4px 16px rgba(45, 21, 97, 0.08);
}
@media (max-width: 480px) {
    .cab-auth-form { padding: 32px 20px; border-radius: 24px; }
    .cab-auth-kicker { font-size: 24px; }
    .cab-otp-input { width: 48px; height: 56px; font-size: 20px; }
}
