* {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #333;
}

html, body {
    height: auto;
    min-height: 100vh;
}

html  {
    background: linear-gradient(180deg, #eeaeca 0%, #94bbe9 100%);
}

input:focus {
    outline: none;
}

#register-container {
    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;
}

#register-banner {
    background: url('../img/bg-form.jpg');
    background-size: cover;
    background-position: center;
    width: 50%;
}

#banner-layer {
    background-color: rgba(65, 10, 53, 0.7);
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#banner-layer h1 {
    font-size: 4rem;
    color: #fff;
    word-spacing: 10rem;
}

#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;
    color: #555;
    font-size: 0.8rem;
}

.form-control {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-control label {
    font-weight: bold;
    margin-bottom: .6rem;
}

.form-control input {
    border: none;
    border-bottom: 1px solid #aaa;
    padding: .6rem 0;
}

#generate-options {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
}

#generate-options .form-control {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#generate-options label {
    font-size: .8rem;
}

#generate-options input[type="text"] {
    max-width: 30px;
    text-align: center;
    border: 1px solid #ccc;
}

#open-generate-password {
    max-width: 200px;
    align-self: center;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

#open-generate-password:hover {
    color: #0099ff;
}

#register-form #generated-password {
    border: 1px solid #0099ff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2rem;
    padding: .4rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

#register-form #generated-password p {
    color: #5cb712;
    margin-bottom: .5rem;
}

#register-form input[type="submit"],
#generate-options button,
#copy-password {
    background-color: #5cb712;
    color: #fff;
    opacity: .8;
    border: none;
    border-radius: 2rem;
    margin-top: 1rem;
    padding: .8rem 1.2rem;
    max-width: 125px;
    cursor: pointer;
    align-self: center;
}

#generate-options button {
    background-color: #0097ff;
    display: block;
    margin: 0 auto;
}

#copy-password {
    margin: 1rem auto;
    background-color:  transparent;
    border: 2px solid #5cb712;
    color: #5cb712;
    padding: .5rem 1rem;
}

#register-form input[type="submit"]:hover {
    opacity: 1;
}

.hide {
    display: none;
}

