@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

$background: #f5f6fa;
$text: #9c9c9c;
$input-bg-color: #fff;
$input-text-color: #a3a3a3;
$button-bg-color: #7f8ff4;
$button-text-color: #fff;

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

body {
    background-image: url(img/SINISTER\ BG6.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0 200px;
}

.wrapper {
    background-color: blck;
}

.container {
    text-align: center;
    min-height: 200px;
}

h1 {
    color: white;
    padding-top: 1%;
    margin-bottom: 5%;
    font-size: 2.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

span {
    color: red;
}

#drumpack {
    margin-top: 7%;
    margin-bottom: 7%;
}

.copy {
    padding: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 1.2rem;
}

.items {
    color: red;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.form {
    margin-top: 8%;
}

.form__field {
    text-align: center;
    width: 100%;
    max-width: 280px; /* Limiting max width for bigger screens */
    height: 40px;
    background-color: white;
    border: 2px solid lightgray;
    margin: 0 auto;
    cursor: pointer;
}

.form__field:hover {
    background-color: rgb(236, 234, 234);
    transition: 0.3s;
    border: 2px solid rgb(236, 234, 234);
}

.form__field:focus-within {
    outline: none;
}

.btn {
    width: 100%;
    max-width: 280px;
    height: 52px;
    border-radius: 1.5rem;
    background-color: rgb(245, 58, 58);
    color: white;
    border: 2px solid;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 20px auto;
}

.btn:hover {
    background-color: white;
    color: red;
    transition: 0.3s;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 1024px) {
    body {
        padding: 0 50px; /* Adjust for medium screen (e.g., tablets) */
    }

    h1 {
        font-size: 2.2rem;
    }

    .form__field {
        width: 90%; /* Make form field take up more of the screen */
        height: 45px;
    }

    .btn {
        width: 90%; /* Make button take up more of the screen */
    }

    .copy {
        font-size: 1.1rem;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 20px; /* Further adjust for smaller screens */
    }

    h1 {
        font-size: 2rem;
    }

    .copy {
        font-size: 1rem;
        padding: 20px;
    }

    .form__field {
        width: 90%;
        height: 45px;
    }

    .btn {
        width: 90%;
    }

    #drumpack {
        margin-top: 5%;
        margin-bottom: 5%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px; /* Further adjust for very small screens */
    }

    h1 {
        font-size: 1.8rem; /* Smaller heading for small screens */
    }

    .copy {
        font-size: 0.9rem;
        padding: 15px; /* Adjust padding for mobile */
    }

    .form__field {
        width: 100%;
        height: 40px;
    }

    .btn {
        width: 100%;
        height: 50px;
    }

    .items {
        margin-bottom: 0;
        margin-top: 5%;
    }
}
