@charset "UTF-8";
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: auto;
    min-height: 100vh;
}
html{
    background: linear-gradient(180deg, #ea03ff 0%, #0097ff 100%);
}
input:focus{
    outline: none;
}
#conteiner{
    max-width: 900px;
    min-height: 80vh;
    margin: 2rem auto;
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
#banner{
    background: url('../img/mar.jpg');
    background-size: cover;
    background-position: center;
    width: 50%;
}
#banner-layer{
    background-color: rgba(74, 74, 231, 0.432);
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
}
#banner h1{
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    word-spacing: 50rem;
}
#register-form{
    background-color: #fdfdfd;
    padding: 2rem;
    width: 50%;
    display: flex;
    flex-direction: column;
}
#register-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}
#register-form p{
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #aaa;
}
.form-control {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}
.form-control label{
    font-weight: bold;
    margin-bottom: .0rem;
}
.form-control input{
    border: none;
    border-bottom: 1px solid #aaa;
    padding: .6rem 0;
}
#generate-password{
    font-weight: bold;
    cursor: pointer;
    transform: 0.4s;
}
#generate-password:hover{
    color: #0097ff;
}
#register-form #generated-password{
    border: 1px solid #0097ff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2rem;
    padding: .4rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    display: none;
}
#generated-password p {
    color: rgb(60, 255, 0);
    margin-bottom: 0.5rem;
}
#register-form input[type="submit"] {
    background-color:rgb(255, 0, 0); ;
    color: #fff;
    opacity: 0.5;
    border: none;
    border-radius: 2rem;
    padding: 1rem 1.4rem;
    max-width: 150px;
    cursor: pointer;
    align-self: center;
    transition: 0.4s;
}
#register-form input[type="submit"]:hover{
    opacity: 1;
}