@import url("./reset.css");

html {
    width: 100%;
}
body {
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: #020228;
    color: #ffffff;
    box-sizing: border-box;
    background-image: url(../images/background-movies-series.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.menu {
    background-color: rgb(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 2px;
    height: 3rem;
    width: 100%;
    padding: 20px 10px;
    gap: 20px;
    box-sizing: border-box;
    position: fixed;
    z-index: 2;
    
}
.menu__logo img {
    width: 100%;
    object-fit: scale-down;
}
.menu__logo {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin-right: 1rem;
}
.menu__link {
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}
.menu__btn {
    border: none;
    border-radius: 30px;
    padding: 8px 10px;
    width: 170px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    color: #ffffff;
    background-color: #b535f6;
    transition: background 1s, color 1s;
    cursor: pointer;
}
.menu__btn:hover {
    background: #ffffff;
    color: #020228;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Raleway", sans-serif;
}
.login__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 969px;
    gap: 20px;
    margin: 130px 0;
    padding: 40px;
    background-color: rgb(250, 250, 250, .05);
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
}
.content__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.content__subtitle {
    font-size: 16px;
}
.login__forms div{
    margin-bottom: 10px;
}
input {
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    color: #ffffff ;
    border: 1px solid #ffffff;
    border-radius: 6px;
    height: 50px;
    width: 100%;
    padding-left: 10px;
    background-color: rgb(0, 0, 0, 0.3);
}
input::placeholder {
    color: #ffffff;
    font-weight: 200;
    padding-left: 10px;
}
.content__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}
.btn {
    background: linear-gradient(60deg, #9b34ef 5%, #490cb0 20%, transparent 50%);
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    font-size: .8rem;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    width: 150px;
    padding: 15px 20px;
    letter-spacing: 4px;
    outline: 3px solid transparent;
    cursor: pointer;
    background-size: 250%;
    transition: background 1s, outline 1s, transform 1s;
}
.btn:hover {
    background-color: transparent;
    background-position: 100%;
    outline: 2px solid #ff00e5;
    transform: scale(1.05);
}
.fpw__link {
    text-decoration: none;
    color: #9e86ff;
    font-weight: bold;
}
footer p {
    text-align: center;
    color: #9e86ff;
    font-family: "Quicksand", sans-serif;
    margin: 0 20px;
    font-size: 14px;
    font-weight: 100;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 10px 40px;
    margin-bottom: 20px;
}
.footer__link {
    display: flex;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    color: #9e86ff;
    cursor: pointer;
    transition: color 1s;
}
.footer__link:hover {
    color: #ffffff;
}
.footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    gap: 40px;
    margin: 60px auto 0px auto;
}
@keyframes gradient-background {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes wiggle {
    0% {
        transform: rotate(0);
    }
    15% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(10deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(10deg);
    }
    35% {
        transform: rotate(-10deg);
    }
    40%, 100% {
        transform: rotate(0);
    }
}
@media screen and (max-width: 1140px) {
    .login__container {
        width: 85%;
    }
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__nav {
        text-align: center;
    }
}
@media screen and (max-width: 800px) {
    .menu {
        flex-direction: column;
        height: auto;
    }
    .content__buttons {
        flex-direction: column;
    }
}
@media screen and (max-width: 480px) {
    input {
    height: 30px;
    }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #b535f6;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff00e5;
}