/* --- Global Netflix Theme --- */
:root {
    --primary-color: #111010;
    --dark-color: #fbf4f4;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--dark-color);
    color: #999;
}

/* --- Showcase Background --- */
.showcase {
    width: 100%;
    min-height: 80vh;
    position: relative;
    background: url('https://i.ibb.co') no-repeat center center/cover;
}



.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay */
    box-shadow: inset 70px 70px 150px #000, inset -70px -70px 150px #000;
}

.showcase-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- The Form Container (Register is taller) --- */
.formm {
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    width: 450px;
    min-height: 600px; /* Use min-height so it expands for errors */
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.formm h1 {
    color: #fff;
    margin-bottom: 20px;
}

.formm p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* --- Inputs --- */
.info {
    display: flex;
    flex-direction: column;
}

.info input.email {
    height: 50px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.info input.email:focus {
    background: #454545;
    outline: none;
}

/* --- Button --- */
.btn-primary {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #f40612;
}

/* --- Links & Footer --- */
.signup {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.signup a {
    color: #fff;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 0;
    margin-top: 50px;
    z-index: 2;
}

.ftr-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ftr a {
    color: #737373;
    font-size: 13px;
    margin-right: 25px;
    text-decoration: none;
}

@media (max-width: 600px) {
    .showcase {
        min-height: 100vh;
        padding: 24px 16px 40px;
    }

    .showcase-content {
        width: 100%;
        padding-top: 24px;
    }

    .formm {
        width: 100%;
        min-height: 0;
        padding: 24px 20px;
    }

    .formm form {
        width: 100%;
    }

    .signup {
        flex-wrap: wrap;
        line-height: 1.5;
    }

    footer {
        position: relative;
        margin-top: 24px;
    }
}
