.icontainer {
    width:auto;
    display:flex;
    flex-direction: column;
    margin-left: 4%;
    margin-bottom: 3%;
    padding-top: 1%;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 1%;
    box-sizing: border-box;
    border-radius: 0.5em;
    box-shadow: 5px 10px 5px rgba(226, 226, 233, 0.7);
    background-color: #cae7da;
    font-family: 'IBM Plex Sans', sans-serif;
    text-align: center;
    }

form {
    width:100%;
    text-align: left;
    }

.formgroup {
    width: auto;
    padding:0.5%;
    font-size: 1em;
    }

.form-group input,

.form-group textarea {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 0.25em;
    font-size: 1em;
    font-family: 'IBM Plex Sans', sans-serif;
    }

textarea{
    width:82%;
    height:95px;
    padding:10px;
    resize:none;
    }

.button2[type="submit"]{
    width: 5em;
    margin-top:1.5%;
    padding: 0.3em 0.5em;
    border: none;
    outline: none;
    background-color: #2A9D6A;
    font-size: 0.9em;
    border-radius: 0.75em;
    font-family: 'IBM Plex Sans', sans-serif;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease background-color;
    }

.button2[type="submit"]:hover{
    background-color: #FFFFFF;
    color: black;
    }

#status {
    width:auto;
    margin: 1%;
    padding-top:0.5em;
    padding-bottom:0.5em;
    border-radius: 0.5em;
    }

#status.success {
    background-color: white;
    animation: status 4s ease forwards;
    }

#status.error {
    background-color: white;
    color: red;
    animation: status 4s ease forwards;
    }

@keyframes status {
    0% {
        opacity: 1;
        pointer-events: all;
    }
    90% {
        opacity: 1;
        pointer-events: all;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }