*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh; 
    overflow: hidden; 
    background-image: url('./assets/images/BG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center; 
    justify-content: center; 
}

.page-wrapper {
    max-width: 1200px;
    padding: 2rem;
}

.site-header {
    margin-bottom: 5rem;
}


.hero-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.hero-content {
    flex: 1;
    max-width: 70%;
    text-align: center;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.hero-image img {
    width: 70%;
    height: auto;
    max-height: 80vh; 
}

.badge {
    display: inline-block;
    background: rgba(24, 110, 242, 1);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 22.5px;
    margin: 0 0 2rem 0;
    max-width: 95%;
}

.signup-form {
    display: flex;
    gap: 10px;
    width: 70%;
    margin: 0 auto;
}
.signup-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.signup-form input[type="email"]::placeholder {
    color: #888;
}

.signup-form button {
    padding: 12px 24px;
    background: rgba(24, 110, 242, 1);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: rgba(24, 111, 242, 0.76);
}

@media (max-width: 768px) {
    body {
        height: auto; 
        min-height: 100vh; 
        overflow: auto; 
        display: block; 
    }

    .page-wrapper {
        margin: 0 auto; 
    }

    .site-header {
        margin-bottom: 3rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
                text-align: left;
    }

    .hero-image img {
        width: 100%;
        max-height: none; 
    }

    .hero-image {
        margin-top: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        max-width: 100%;
        margin-bottom: 2rem;
    }

       .signup-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}