.verification-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-code-display {
    display: flex;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    user-select: none;
    min-width: 100px;
    justify-content: center;
}

.verify-char {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding: 0 2px;
    display: inline-block;
    transform: rotate(0deg);
}

/* Random rotation for characters to make it look more capthca-like */
.verify-char:nth-child(odd) {
    transform: rotate(5deg);
}

.verify-char:nth-child(even) {
    transform: rotate(-5deg);
}

.verify-refresh-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    color: #666;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-refresh-btn:hover {
    color: #333;
}

.refresh-icon {
    display: block;
}

.verification-wrapper input[type="text"] {
    width: 150px;
    letter-spacing: 2px;
    font-family: monospace;
}

.verification-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Loading Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.verify-refresh-btn.rotating .refresh-icon {
    animation: rotate 1s linear infinite;
}

/* Submit Button */
/* button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}