@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: black;
}

section {
    min-height: 100vh;
}

.message-box {
    position: relative;
    /* height: 110vh; */
    width: 440px;
    /* width: 440px; */
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    margin: 20% 0;
}



h2 {
    margin-top: 10px;
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-top: 25px;
}



.input-box {
    position: relative;
    width: 355px;
    /* width: 355px; */
    margin: 30px 0;
}


.input-box label {
    color: white;
    display: block;
    margin-top: 10px;
}


input[type="text"],
textarea {
    width: 100%;
    height: 50px;
    background-color: white;
    border: 1px solid black;
    outline: none;
    font-size: 1em;
    color: black;
    padding: 0 5px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 4px;
}

textarea {
    height: 100px;
    max-height: 200px;
    overflow-y: auto;
    resize: none;
    padding: 5px;
}


.newsletter,
.asz {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: space-between;
}


.asz-label {
    width: 355px;
    display: flex;
    align-items: baseline;
}


.asz-error {
    display: flex;
    flex-direction: column;
}


.newsletter label input,
.asz label input {
    margin-right: 3px;
}


.newsletter a {
    color: white;
    text-decoration: none;
}



.asz a {
    color: #bbbbbb;
    text-decoration: none;
}


.newsletter a:hover,
.asz a:hover {
    text-decoration: underline;
}

.error-message {
    position: relative;
    color: red;
    font-size: 0.875em;
    display: none;
    margin-top: 5px;
}


.submit-order-button, .submit-mistakes-button {
    width: 100%;
    /* width: 25%; */
    height: 40px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1em;
    color: #000;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
}



@media (max-width: 376px) {

    .message-box {
        width: 100%;
        border: none;
        border-radius: 0;
    }

    .input-box, .asz-label {
        width: 290px;
    }
}
