body{
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100vh;
 margin: 0;
    padding: 0;
    background-image: url('Foto/backgroundlogin.jpg'); 
    background-repeat: repeat; 
    background-size: cover; 
    background-position: center; 
    
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3); 
    z-index: -1; 
}
#signup-form {
    display: none;
}
.cont{
    width: 700px;
    background: linear-gradient(to bottom, #ffffff, #cabba2);
    border-radius: 10px;
    box-shadow: 5px, 5px, 10px,#66635e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    padding: 25px;

}
.cont1{
    background: radial-gradient(circle, #ffffff, #cabba2);
    padding: 20px;

}
form{
    text-align: center;

}
input {
    padding: 10px;
    margin: 8px 0;
    border: 2px solid #002B5B;
    border-radius: 4px;
    width: 500px;
    box-sizing: border-box;
    transition: border-color 0.3s; 
}

input:focus {
    border-color: #EA5455; 
    outline: none; 
}
a{
    text-decoration: none;
}
#signupLink, #loginLink{
    color: #EA5455;
}

input::placeholder {
    color: #999; 
}
p{
    color:#002B5B;
    font-size: smaller;
    margin-top: 5px;
}
.submit{
    border: none;
    width: 200px;
    background-color: #002B5B;
    color: #E4DCCF;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;

}
.submit:hover{
    background-color: #EA5455;
    transition: 1s;
}
h3{
    font-size: small;
    font-weight: lighter;
}
[type="radio"], [type="checkbox"]{
    width:auto;
    margin-left: 5px;
}
.interests{
    font-style: italic;
}
