/* *{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: white;
    color: black;
} */

.verification-container{
    width: 100%;
    height: auto;
    padding: 3rem 0rem;
    background-color: #F5F5F5;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ver-heading{
    font-size: 1.3rem;
    font-weight: 500;
    font-family: inherit;
}

.ver-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    /* background-color: white; */
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
}
.ver-code {
    width: 500px !important;
    padding: 1rem;
    border: 1px solid #dbdbdb !important;
    outline: none;
    transition: 0.2s ease-in;
    border-radius: 0px !important;
}

input.ver-code:focus{
    border: 1px solid black !important;
}

.ver-submit {
    color: black !important;
    padding: 0.5rem !important;
    width: 150px !important;
    /* height: 40px !important; */
    box-sizing: border-box !important;
    outline: none !important;
    border: none !important;
    background: #7D34F3 !important;
    color: white !important;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.ver-submit:focus {
    outline: 2px solid #6c1cec;
    outline-offset: 2px;
}

.ver-submit:hover{
    background: #6c1cec;
}

.ver-output-error{
    color: rgb(255, 30, 30);
    font-weight: 500 !important;
    font-size: 1rem !important;
    display: flex;
    gap: 1rem !important;
    display: none;
}

.ver-output-error{
    font-size: 1rem;
}

.ver-out-success{
    color: rgb(10, 192, 4);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    display: none;
}

.success-msg{
    display: flex;
    gap: 1rem;
}


.ver-table {
    border-collapse: collapse;
    width: 800px;
    margin: 10px auto;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.ver-row1 {
    background-color: #E4E4E4;
    color: #000;
    font-weight: 500;
    font-family: inherit;
    
}

.ver-row2 {
    background-color: transparent;
    color: black;
}

th, td {
    text-align: left;
    padding: 12px;
    border: 1px solid #ddd;
}

th {
    font-weight: bold;
    text-align: center;
    font-weight: 500;
}

td {
    text-align: center;
}

.spinner {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


