﻿.otp-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

/* Form styling */
.otp-form {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Adjust the form width for responsiveness */
}

/* Header label */
.otp-form-header {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* OTP input container */
.otp-input-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Error message */
.error-message {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: #f44336;
}

/* Footer with the button */
.otp-form-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Button Styling */
.sf-button {
    width: 100%; /* Button should take full width */
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .sf-button:hover {
        background-color: #45a049; /* Slightly darker green when hovering */
    }

/* Mobile responsiveness */
@media (max-width: 600px) {
    .otp-form {
        padding: 20px;
    }

    .otp-form-header {
        font-size: 16px;
    }

    .otp-input-container {
        flex-direction: column;
        align-items: center;
    }

 
}


