
#emailModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);

}

#modalContent {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius:10px;
}

#modalContent input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-size: 14px;
}
#modalContent #emailInput{
    width: 80%;
}
#modalContent #codeInput{
    width:40%;
}

#modalContent  button {
    margin: 10px 20px 0px 50px;
    padding: 10px 15px;
    border: none;
    background-color: #4CAF50; /* Green */
    color: white;
    cursor: pointer;
    border-radius: 4px;

}
