/* TEMPLATING */
body {
    margin: 0px;
    font-family: Gill Sans, sans-serif;
    width: 100%;
    font-weight: bold;
}

#title {
    display: flex;
    align-items: center;
    height: 70px;
    background-color: darkslategrey;
    color: white;
    font-size: 1.5rem;
}

#title p {
    margin-left: 20px;
}

.row {
    display: flex;
}

.column {
    flex: 50%;
    padding: 20px;
    position: relative;
}

.column:nth-child(1) {
    background-color: lightgray;
    min-width: 720px;
}

.column:nth-child(2) {
    background-color: rgb(211, 227, 233);
}



/* Password Validation */
fieldset {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 110px;
}

input {
    margin: 5px;
}

label {
    display: inline-block;
    width: 60px;
}

#sub {
    float: middle;
}


ul {
    margin-top: 5px;
}

