* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace, sans-serif;
}

body {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.background {
    background: #D0E4F5 url(./images/background.jpg) no-repeat scroll 0% 28%;
    background-size: 85vh;
    background-position: center;
    width: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    height: 18vh;
}
.logo {
    width: 100%;
    text-align: center;
    opacity: .5;
    height: 20%;
    background: #1b1616;
}


form {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: black;
    width: 60vw;
    padding-left: 5vh;
    gap: 8vh;
}

section.prompt {
    padding: 2vw;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.main-form > div {
    display: flex;
    flex-direction: column;
    width: 40%;
}

section.main-form {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
}

label {
    font-size: 0.7rem;
    color: #5E5E5E;
}


section.form-submit {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 28px;
 }

button {
    color: rgb(211 236 231);
    font-size: 19px;
    line-height: 19px;
    padding: 8px;
    border-radius: 10px;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    background-image: linear-gradient(to right, rgb(18 19 19) 0%, rgb(42 110 54) 50%, rgb(32 61 32) 100%);
    box-shadow: rgb(0, 0, 0) 5px 5px 15px 5px;
    border: 2px solid rgb(14 48 16);
    display: inline-block;
    width: 138px;
}
        button:hover {
        background: #062417; }
        button:active {
        background: #021506; }


.text {
    color: white;
    width: 100%;
}

a {
    text-decoration: none;
    color: #BB9F80;
    font-weight: 700;
}

input {
    background: #0d0c0c;
    border-radius: 2px;
    border: 1px solid #555;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    color: white;
}

input:focus {
  border: 3px solid #1b2720;
}

.valid-password {
    border: 3px solid green;
  }
  