* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
        background-image: url(header\ \(8\).png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%; /* Optional: Sets the height of the body to the full viewport height */
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 59px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    padding-bottom: 20px;
}

p {
    color: #000000;
}

p,
input,
textarea,
label {
    font-family: 'Poppins',
        sans-serif;
}

.containerr {
    background-image: url(header\ \(8\).png);
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
}


.container {
    background-color:#FFFFFF;
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}

input,
textarea,
label {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: #000000;
}

input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #000000;
}

input[type=submit] {
    background-color: #000000;
    padding: 15px 0;
    color: rgb(255, 248, 248);
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

input[type=submit]:hover {
    background: #FFF;
    color: #000000;
}

input,
textarea {
    color: rgb(0, 0, 0);
    font-size: 18px;
    padding: 10px;
}

input:focus,
textarea:focus {
    outline: 1px solid #000000;
}

a {
    color: #000000;
    font-style: italic;
}

a:hover {
    color: #404040;
}