body{
    height: 100vh;
    display: flex;
    width: 100vw;
    background-color: #cccccc; 
    font-family: Arial, sans-serif;
    align-items: center;
    flex-direction: column;
}


.card{
    width: 80vw;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    width: 75vw;
    height: 10vh;
    margin: auto;
    padding: 20px;
}

.gender{
    text-align: center; 
    width: 75vw;
    height: 10vh;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

.interest{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center; 
    width: 75vw;
    height: 70vh;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}


.interest-form{
    display: flex;
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}



.button{

    margin-top: auto;
    background-color:#176fc1;
    font-family: Arial,sans-serif;
    font-size: 24px;
    width: 15vw;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/*PopUps*/

.popup{
    display: none;
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popupContent{
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}