﻿
.otp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-inputs input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.otp-inputs input:focus {
    border-color: #4285f4;
    box-shadow: 0 0 6px rgba(66, 133, 244, 0.3);
}

.verify-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.verify-btn:hover {
    background-color: #3367d6;
}
