.forgot-input
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.forgot-input input[type="email"], .otp-forms-input input[type="text"], .otp-forms-input input[type="password"]
{
    width: 300px;
    border: 1px solid #A32626;
    padding: 11px 30px 7px 30px;
    border-radius: 30px;
    outline: none;
}

.forgot-input button, .otp-forms-input button 
{
    background: #A32626;
    color: #fff;
    padding: 11px 30px 7px 30px;
    border-radius: 30px;
    outline: none;
    width: 300px;
    transition: all .5s ease-in-out;
}
.forgot-input button:hover, .otp-forms-input button:hover
{
    background: black;
    color: #ffd700;
}

.spinner-icon {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* #fc-otp-section
{
    display: inline;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    margin-top: 20px;
    gap: 10px;
} */