@font-face {
    font-family: 'norsebold';
    src: url('norse-bold-webfont.woff2') format('woff2'),
         url('norse-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: black;
    z-index: -10;
}

body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    background-color: white;
    z-index: -5;
}

.side {
    min-width: 400px;
    min-height: 600px;

    flex: .35;
    background-image: url(background.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -2;


    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    margin-top: 40%;
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.logo::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .5;
    z-index: -1;
    position: absolute;
    padding: 10px 0px;
}

img {
    width: 15%;
}

.logo-text {
    font-family: 'norsebold';
    font-size: 64px;
    letter-spacing: 3px;
}



.credit {
    font-family: '';
    color: white;
    text-align: center;
    margin-bottom: 2%;
}


.main {
    flex: .65;
    min-width: 450px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.top {
    flex: 1;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.middle {
    flex: .85;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px 30px;
}

.bottom {
    flex: 1;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.header {
    margin: 10px 0px;
    font-size: 20px;
    font-weight: 600;
    font-family: "Source Sans 3";
}

form {
    display: flex;
    flex-direction: row;
    gap: 12%;
}

.entry {
    display: flex;
    flex-direction: column;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Source Sans 3";
    font-weight: 500;
    color: #1a1a1a;
}

input, label {
    width: 175px;
    margin: 0px;
    padding: 0px;
}

input {
    height: 17px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

input:focus {
    outline: none;
    height: 17px;
    border: 2px solid blue;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

input:invalid {
    outline: none;
    height: 17px;
    border: 2px solid red;
    border-radius: 4px;
}

.text {
    width: 90%;
    font-size: 20px;
    font-weight: 650;
    font-family: "Source Sans 3";
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 3%;
}

button {
    margin-top: 5%;
    padding: 10px 40px;
    color: white;
    background-color: #596D48;
    font-weight: 650;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    border: 0px;
    border-radius: 5px;
}

.bottom > div {
    font-family: "Source Sans 3";
}

.bottom > div > a {
    color: #596D48;
    font-weight: 650;
}

button:hover {
    margin-top: 5%;
    padding: 10px 40px;
    color: white;
    background-color: green;
    font-weight: 650;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
}

.bottom > div > a:hover {
    color: #596D48;
    font-weight: 650;
    cursor:pointer;
}


