body {
    background-color: black;
    color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}



.container {
    text-align: center;
    
}

.form-wrapper {
    display: inline-block;
    border: 3px solid white;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
}

label {
    display: inline-block;
    width: 150px;
    margin-bottom: 10px;
    text-align: left;
}

input,
textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: orange;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}



@media only screen and (max-width: 600px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        overflow: auto;
    }
    

    .container {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .form-wrapper {
        width: 100%;
    }
}

label {
    width: 100%;
}
