.star-otp-edit-phone {
    text-align: center;
    margin-top: 10px;
}

.star-otp-edit-phone a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.star-otp-edit-phone a:hover {
    text-decoration: underline;
}/**
 * Star OTP Public CSS
 */

/* Basic reset */
.star-otp-container * {
    box-sizing: border-box;
}

/* Form error highlight */
.star-otp-form input.error {
    border-color: #dc3232 !important;
}

/* OTP Input Fields */
.star-otp-code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.star-otp-code-input {
    width: 50px !important;
    height: 60px !important;
    text-align: center !important;
    font-size: 24px !important;
    font-weight: bold;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
}

.star-otp-code-input:focus {
    border-color: #0073aa !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5) !important;
}

/* Loading indicator */
.star-otp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #333;
    animation: star-otp-spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes star-otp-spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .star-otp-container {
        padding: 20px !important;
    }
    
    .star-otp-roles a {
        margin: 0 2px !important;
        padding: 4px 8px !important;
        font-size: 14px;
    }
    
    .star-otp-code-input {
        width: 40px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}