body {
    background-color: black;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

header {
    position: fixed; /* Change position to fixed */
    top: 0; /* Place the header at the top of the viewport */
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    white-space: inherit;
    z-index: 2; /* Ensure header is above the background */
}

header img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.container {
    position: absolute; /* Position the container absolutely */
    top: 100px; /* Adjust top positioning to start below the header */
    left: 0;
    width: 100%;
    bottom: 0; /* Extend the container to the bottom of the viewport */
    background-image: url('slider_6.jpg'); /* Set the image as the background */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    z-index: 1; /* Ensure container is below the header */
}

.box {
    color: black;
    margin-top: 8%;
    margin-left: auto; /* Adjust margin-left to push the box to the right */
    margin-right: 4%; /* Reset margin-right */
    background-color: rgba(38, 8, 8, 0);
    padding: 20px;
    width: 27%;
    position: relative; /* Add this to establish a new stacking context */
    z-index: 2; /* Ensure the box is above the background */
}

.box h2 {
    text-align: center;
    margin: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    color: black;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

label {
    font-size: 15px;
    margin-right: 10px;
}

input {
    padding: 7px;
    font-size: 12px;
    flex: 1; /* Added to make inputs expand to fill available space */
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: rgb(234, 192, 137);
    color: black;
    border: none;
    cursor: pointer;
    width: 100%; /* Added to make button width same as input fields */
}

button:hover {
    background-color: antiquewhite;
}

#sign{
    padding: 4px;
    text-align: center;
    background-color: antiquewhite;
}

a{
text-decoration: underline;
color: black;
}