#register{
    display: flex;
    justify-content: center;
    margin: 50px 0;
    color:whitesmoke;
}

/* Message once register form sent sucessfully */
#add-update-msg {
    position: absolute;
    top: 210px !important; 
    left: 50%;
    transform: translateX(-50%);
    width: 20%; 
    text-align: center; 
}

#register form {
    background-color: rgba(62, 62, 62, 0.3);
    width: 550px;
    border-radius: 25px;
    position: relative;
}
#register h3{
    display: flex;
    justify-content: center;
    margin:10px;
}

#register input{
    display:block;
    width: 350px;
    margin: 0 auto;
    padding: 5px 0px;
    border-radius: 5px;
}
#register label {
    margin-left: 100px;
}

#register legend{
    margin-left: 103px;
    font-size: 16px;
    margin-bottom:30px;
}

#register .gender {
    display: flex;
    flex: 1;
    justify-content: space-around;
    max-width: 350px;
    margin: 0 55px;
    box-sizing: border-box;
    align-items: center;
}

#register .gender input[type="radio"] {
    width: 20px; 
    height: 20px;
    margin-right: 10px;
}

#register .gender label {
    align-items: baseline;
    margin-top:10px;
}

#register #register-button{
    display: flex;
    justify-content: center;
}

#register button{
    background-color: black;
    color: white;
    width: 130px;
    height: 35px;
    font-size: 20px !important;
    border-radius: 10px;
    margin: 25px;
}

.register-background{
    background-image: url('../images/woman-with-flying-hair.jpg');
    background-size: cover;
    background-color: transparent;
    padding: 0;
    position: relative;
    display:block;
    z-index: -1;
}
#add-update-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:white;
}

@media screen and (max-width: 500px){
    #add-contact form{
        width:360px;
    }

    #register label {
        margin-left: 10px;
    }
}