* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif
}

:root {
    --pink: #ff3d8d;
    --light: #ff76ad;
    --bg: #09090d;
    --card: #111119;
    --muted: #aaaab5
}

body {
    background: var(--bg);
    color: #fff
}

a {
    text-decoration: none;
    color: inherit
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    padding: 0 5%;
    background: rgba(9, 9, 13, .92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid rgba(255, 61, 141, .15)
}

.logo {
    font-size: 25px;
    font-weight: 800;
    white-space: nowrap
}

.logo span {
    color: var(--pink)
}

ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px
}

ul a {
    color: #ddd;
    font-size: 15px;
    font-weight: 600;
    transition: .3s
}

ul a:hover {
    color: var(--pink)
}

.wrapper {
    position: relative;
    width: 220px;
    height: 42px
}

.wrapper input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 16px;
    border: 1px solid #292934;
    outline: none;
    background: #15151d;
    color: #fff;
    font-size: 14px;
    border-radius: 22px
}

.wrapper input:focus {
    border-color: var(--pink)
}

.wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink)
}

.Sing-in-button {
    padding: 11px 20px;
    background: linear-gradient(90deg, var(--pink), var(--light));
    color: #fff;
    border-radius: 22px;
    font-size: 14px;
    font-weight: bold;
    transition: .3s;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(255, 61, 141, .25)
}

.Sing-in-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 61, 141, .4)
}

.land-page {
    min-height: 100vh;
    width: 100%;
    padding: 125px 5% 70px;
    background: linear-gradient(90deg, rgba(9, 9, 13, .98), rgba(9, 9, 13, .65), rgba(9, 9, 13, .82)), url("./images/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px
}

.title h1 {
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 800
}

.title h1:after {
    content: "";
    display: block;
    width: 65px;
    height: 4px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--pink)
}

.title .Buttons {
    display: flex;
    gap: 10px
}

.title .Buttons i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #444450;
    background: rgba(20, 20, 28, .8);
    color: #fff;
    cursor: pointer;
    transition: .3s
}

.title .Buttons i:hover {
    background: var(--pink);
    border-color: var(--pink)
}

.movies {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 22px
}

.movie {
    overflow: hidden;
    padding-bottom: 15px;
    border: 1px solid rgba(7, 7, 7, 0.15);
    border-radius: 10px;
    transition: .3s
}

.movie:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 61, 141, .5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .45)
}

.movie img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    transition: .4s
}

.movie:hover img {
    transform: scale(1.03)
}

.movie h3,
.movie .category,
.movie .rating {
    margin-left: 15px
}

.movie h3 {
    margin-top: 15px;
    margin-bottom: 7px;
    font-size: 19px
}

.movie .category {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
    font-size: 14px;
    text-transform: capitalize
}

.movie .rating {
    color: #ffc107;
    font-size: 14px
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 5%;
    color: var(--muted);
    border-top: 1px solid #292934;
    background: #07070b;
    font-size: 14px
}

.copyright span {
    color: var(--pink);
    font-weight: bold
}

.copyright p {
    display: flex;
    align-items: center;
    gap: 8px
}

.copyright img {
    width: 22px;
    height: 22px;
    border-radius: 50%
}

.form-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(rgba(9, 9, 13, .82), rgba(9, 9, 13, .95)), url("./images/background.jpg") center/cover
}

.container {
    width: min(420px, 100%);
    padding: 35px;
    background: rgba(17, 17, 25, .94);
    border: 1px solid rgba(255, 61, 141, .45);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55), 0 0 30px rgba(255, 61, 141, .12)
}

.container h1 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 30px
}

.container h1:after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin: 9px auto 0;
    background: var(--pink);
    border-radius: 5px
}

.container form {
    width: 100%
}

.container form label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
    font-weight: bold
}

.container form input {
    display: block;
    width: 100%;
    height: 46px;
    margin-bottom: 20px;
    padding: 0 15px;
    border: 1px solid #353541;
    border-radius: 10px;
    background: #0d0d14;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: .3s
}

.container form input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 61, 141, .1)
}

.container form input::placeholder {
    color: #777783
}

.container form #continue-btn {
    height: 48px;
    border: none;
    background: linear-gradient(90deg, var(--pink), var(--light));
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
    transition: .3s
}

.container form #continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 61, 141, .3)
}

@media(max-width:1050px) {
    header {
        padding: 12px 3%;
        flex-wrap: wrap
    }

    ul {
        order: 4;
        width: 100%;
        justify-content: center;
        padding-bottom: 8px
    }

    .land-page {
        padding-top: 155px
    }

    .movies {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:650px) {
    ul {
        gap: 12px
    }

    ul a {
        font-size: 12px
    }

    .wrapper {
        width: 160px
    }

    .movies {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .movie img {
        height: 240px
    }

    .title h1 {
        font-size: 23px
    }

    .copyright {
        flex-direction: column;
        text-align: center
    }
}