#form_section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 100px 0;

    form {
        background-color: #ffffff24;
        width: 850px;
        padding: 2em;
        display: flex;
        flex-direction: column;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        
        h2 {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        input,
        textarea {
            padding: 1em;
            margin: 1em;
            font-size: 0.8em;
            border: 1px dotted silver;
            background-color: #fcfcfc;
        }
        
        textarea {
            resize: none;
        }
        
        input[type="submit"] {
            background-color: #3F63AF;
            color: white;
        }
    }
}