.main{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100vh;
}
.email-verify-container {
width: 100%;
max-width: 400px;
padding: 20px;
justify-content: center;
align-items: center;
}

.email-verify-box {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

.email-verify-title {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}

.email-verify-input {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}

.email-verify-button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}

.email-verify-button:hover {
background-color: #0056b3;
}