


/* Apply CSS to the header */
nav.navbar {
    background-color: #f8f9fa; /* Change the background color if needed */
    margin-bottom: 20px; /* Add margin to separate it from the .verification-container */
}






.verification-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    margin: 0 auto; 
}

.verification-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.verification-container input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.verification-container button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
}

.verification-container button:hover {
    background-color: #0056b3;
}





