/* Netflix clone for learning purposes */

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image:
        linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent),
        linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent),
        url("../img/net-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 4rem 2rem 4rem;
}

.net-log img {
    width: 150px;
}

.net-but .lang {
    background-color: transparent;
    color: white;
    font-size: 18px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 15px 5px 15px;

}

.net-but .signin {
    margin: 0px 0px 0px 12px;
    background-color: rgb(229, 9, 20);
    color: white;
    border: none;
    font-size: 17px;
    font-size: bold;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;

}

.net-cont {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 15rem 5rem 0rem 5rem;
}

.net-cont h1 {
    color: white;
    font-size: 35px;
    text-align: center;
}

.net-cont h5 {
    color: white;
    font-size: 18px;
    font-weight: 250;
    text-align: center;
    margin: 15px 0px 0px 0px;
}

.net-email {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 3rem 5rem 5rem 5rem;
}

.net-email p {
    color: white;
    text-align: center;
}

.net-input {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.net-input input {
    background-color: transparent;
    border: 1px solid white;
    font-size: 15px;
    color: white;
    padding: 15px 40px 15px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

.net-input button {
    background-color: rgb(229, 9, 20);
    border: none;
    font-size: 20px;
    font-weight: 400;
    color: white;
    padding: 9px 30px 8px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

input::placeholder {
    color: white;
}
