* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Muli';
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.left {
    flex: 50%;
    height: 100vh;
    background-color: #fff;
    overflow-y: scroll;
}

.left::-webkit-scrollbar {
    display: none;
  }
  
.left {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

header {
    width: 100%;
    height: auto;
}

.header img {
    width: 250px;
    height: auto;
    margin: 20px 40px;
}

.left__content {
    width: 100%;
    height: auto;
    padding: 20px 40px;
}

.left__content h1, .left__content h2 {
    color: #034774;
    padding-bottom: 20px;
}

input[type="text"], input[type="email"], select {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 20px;
    border: 1px solid #ccc;
    background-color: #f5f8fa;
}

input[type="submit"] {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #034774;;
    padding: 1rem 5rem;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="submit"]:hover {
    color: #000;
    background-color: #e9eaeb;
    cursor: pointer;
}

.right {
    flex: 50%;
    height: 100vh;
    overflow: hidden;
    background-color: #034774;
    background-image: url('../images/NLU_Flag.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px;
}

.right__content {
    width: 100%;
    height: auto;
    color: #fff;
    background-color: rgba(255, 255, 255, .3);
    padding: 20px;
}
.right__content h1, .right__content h2 {
    text-transform: uppercase;
    padding-bottom: 15px;
}

.right p {
    font-size: 1.25em;
    padding-bottom: 10px;
}

@media only screen and (max-width: 980px) {
    .left, .right {
        flex: 100%;
    }
    .left {
        height: auto;
    }
    .right {
        height: auto;
        overflow: scroll
        padding: 20px;
    }
}
