br{
	display: none;
}
#formConatiner{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
}
#formConatiner.active{
    display: flex;
    justify-content: center;
    align-items: center;
}
#register{
    background-color: white;
    border: 2px solid;
    border-radius: 5px;
    padding: 20px;
    width: 30%;
    position: relative;
	line-height: 1;
}
#register > *{
	font-size: 13px;
}
#register_close{
    position: absolute;
    width: 10%;
    top: -20px;
    right: -20px;
    cursor: pointer;
}
#register label{
    display: block;
	margin-bottom: 5px;	
}
#register input,#register textarea{
    display: block;
    width: 100%;
}
#register select{
	margin-bottom: 10px;
}
#register_submit{
    text-align: center;
}
#register_submit button{
    background-color: #3b54a6;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}
/* #register div{
    margin-top: 1em;
} */
textarea{
    vertical-align: top;
    height: 5em;
}
    
.error{
    visibility: hidden;
}		

.error_show{
    color: red;
    margin-left: 10px;
}

input.invalid, textarea.invalid{
    border: 2px solid red;
}

input.valid, textarea.valid{
    border: 2px solid green;
}