body{
    padding: 0;
    margin: 0;
}

.coverImage{
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    width: 30vw;
    object-fit: cover;
    min-height: 20vw;
}

.logoText{
    margin: 0;
    padding: 0;
    font-size: xx-large;
    font-weight: bolder;
}

.logo{
    position: absolute;
    display: flex;
    width: 30vw;
    height: 10vh;
    background-color: rgba(0,0,0,0.5);
    color: aliceblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    justify-content: center;
    align-items: center;
    bottom: 5vh;
}

.form{
    position: absolute;
    left: 30vw;
    right: 0;
    display: flex;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #f9fbfd;
    align-items: center;
}

form{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #fffefe;
    height: 34%;
    width: 100%;
    padding-bottom: 50px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.15);
}

.elements{
    display: grid;
    grid-template-columns: repeat(2, 225px);
    margin-left: 20px;
}

.formElement{
    margin: 10px;
}

.submitButton{
    margin-top: 37px;
    margin-left: 30px;
    border: none;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #596D48;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 7px;
    font-size: medium;
    font-weight: bold;
}

label{
    font-size: small;
    color: #2c2e37;
}

input{
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    height: 23px;
    background-color: #feffff;
}

input:focus{
    outline: 1px solid rgb(62, 104, 255);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}