* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: #0c0c0c;
    color: white;
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 620px;
    min-height: 100vh;
}

.hero-side {
    position: relative;
    overflow: hidden;
}

    .hero-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    left: 60px;
    bottom: 80px;
    max-width: 520px;
}

.badge {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba( 216, 162, 77, .15);
    color: #d8a24d;
}

.hero-overlay h1 {
    font-size: 58px;
    margin-top: 24px;
    font-weight: 800;
}

.hero-overlay p {
    margin-top: 18px;
    opacity: .8;
    font-size: 18px;
}

.form-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.register-card {
    width: 100%;
    max-width: 520px;
    padding: 50px;
    border-radius: 36px;
    background: rgba( 255, 255, 255, .03);
    backdrop-filter: blur(20px);
}

    .register-card h2 {
        font-size: 42px;
        margin-top: 20px;
    }

.field {
    margin-top: 20px;
}

    .field input {
        width: 100%;
        height: 62px;
        padding: 20px;
        border: none;
        border-radius: 18px;
        background: rgba( 255, 255, 255, .05);
        color: white;
    }

button {
    width: 100%;
    height: 68px;
    margin-top: 30px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient( 135deg, #d8a24d, #ffcb73);
}


.slider-wrapper {
    height: 48px;
    overflow: hidden;
    position: relative;
    margin-bottom: 22px;
}

    .slider-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 18px;
        background: linear-gradient( 180deg, #0d0d0d, transparent );
        z-index: 2;
    }

    .slider-wrapper::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 18px;
        background: linear-gradient( 0deg, #0d0d0d, transparent );
        z-index: 2;
    }

.slider-track {
    animation: verticalSlider 10s infinite;
}

.slide {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    font-size: 14px;
    letter-spacing: 1px;
    color: #d8a24d;
    text-transform: uppercase;
}

@keyframes verticalSlider {

    0% {
        transform: translateY( 0);
    }

    25% {
        transform: translateY( -48px);
    }

    50% {
        transform: translateY( -96px);
    }

    75% {
        transform: translateY( -144px);
    }

    100% {
        transform: translateY( 0);
    }
}

.login-link {
    margin-top: 26px;
    text-align: center;
}

    .login-link a {
        color: #d8a24d;
        text-decoration: none;
    }

@media(max-width:900px) {

    body {
        overflow-x: hidden;
    }

    .register-container {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }

    /* HERO */

    .hero-side {
        height: 38vh;
        position: relative;
        overflow: hidden;
        border-radius: 0 0 34px 34px;
    }

        .hero-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.04);
        }

        /* OVERLAY */

        .hero-side::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: linear-gradient( 180deg, rgba( 0, 0, 0, 0), rgba( 0, 0, 0, .45), rgba( 0, 0, 0, .95) );
        }

    /* TEXTO */

    .hero-overlay {
        left: 24px;
        right: 24px;
        bottom: 28px;
        max-width: none;
        z-index: 5;
    }

        .hero-overlay h1 {
            font-size: 36px;
            line-height: 1.05;
            margin-top: 16px;
            max-width: 260px;
        }

        .hero-overlay p {
            font-size: 14px;
            line-height: 1.4;
            margin-top: 12px;
            max-width: 290px;
        }

    /* CARD SOBE */

    .form-side {
        margin-top: -70px;
        padding: 20px;
        position: relative;
        z-index: 10;
    }

    .register-card {
        padding: 34px;
        border-radius: 34px;
        background: rgba( 15, 15, 15, .95);
        backdrop-filter: blur(30px);
        box-shadow: 0 20px 60px rgba( 0, 0, 0, .4);
    }

        .register-card h2 {
            font-size: 40px;
        }

}
