body {
    margin: 0px;
    height: 100vh;
    width: 100vw;
    background-size: contain;
    color: white;
}

body::-webkit-scrollbar{
    display: none;
}

.background{
    width: 100%;
    height: 100vh;
    background: url('background.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

header {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
}


#mg {
    text-align: right;
}

.sign-out a {
    font-size: 30px;
    color: white;
}

#Netflix {
    float: left;
}

.container {
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    max-width: 800px;
    min-height: 500px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1.5rem;
}

.left {
    flex-basis: 45%;
}

.right {
    flex-basis: 45%;
}

form {
    padding: 1rem;
}

h3 {
    margin-top: 1rem;
    color: rgb(163, 177, 214);
}

form input[type="text"] {
    width: 94%;
    padding: 0.5rem 0.7rem;
    margin: 0.5rem 0;
    outline: none;
}

#zip {
    display: flex;
    margin-top: 0.5rem;
}


select {
    padding: 0.5rem 0.7rem;
    width: 100%;
}

input{
    background: transparent;
    color: white;
}

input::placeholder{
    color: white;
}

select{
    background: transparent;
    color: white;
}

select option{
    background-color: black;
}


#zip input[type="number"] {
    padding: 0.5rem 0.7rem;
    margin-left: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 0.7rem 1.5rem;
    background: red;
    color: white;
    border: none;
    outline: none;
    margin-top: 1rem;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #2c3e50;
}

@media only screen and (max-width: 770px) {
    .container {
        flex-direction: column;
    }

    .right{
        margin-bottom: 100px;
    }

}