*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display:flex;
    background: linear-gradient(105deg, rgb(0, 187, 187), rgb(222, 56, 84));
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    padding: 10px;
    border: 4px solid rgb(0, 0, 0);
    width: 300px;
    height: 600px;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    text-align: center;
    background-color: rgb(39, 39, 39);
    
}
.name{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
    margin-top: -40px;
}
#username{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.mail{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
}
#email{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.confirm_email{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
}
#email_conf{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.pass{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
}
#password{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.confirm_password{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
}
#pass_conf{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.age{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 20px;
    
}
#myage{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.nationality{
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-bottom: 40px;
    
}
#mynati{
    background: transparent;
    height: 30px;
    color: white;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
label{
    color: white;
}
.sub{
    margin-top: 30px;
    margin-bottom: 30px;
}
#signup{
    height: 30px;
    width: 80px;
    border: none;
    border-radius: 5px;
}
.already{
    margin-top: 20px;
    margin-bottom: -30px
    
}
a{
    color: aliceblue;
    text-decoration: none;
}