*{
    padding:0 ;
    margin: 0;
    box-sizing: border-box;
}

body{
    font: 'Montserrat';
}

section{
    height: 100%;
    width: 100%;
    background-image: url(polynesia-3021072__340.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container{
    width: 500px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 20px black;
    background-color: white;
    border-radius: 18px;
    margin-bottom: 20px;
}

.form-group{
    width: 100%;
    font-size: 20px;
    margin-top: 20px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 5px;
    font-size: 18px;
    border: 1px solid rgba(red, green, blue, alpha);
}

button[type="Submit"]{
    width: 100%;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 30px;
    border-radius: 10px;
    background-color: rgba(red, green, blue, alpha);
    cursor: pointer;
    color: rgb(27,166,247); 
    margin-top: 10px;
    transition: 3s ease background-color;
}

button[type="Submit"]:hover{
    background-color: rgb(214,16,247);
}

#status{
    width: 90px;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
}

#status.success{
    background-color: rgb(211,250,153);
    animation: status 4s ease delay iteration-count direction fill-mode;
}

#status.error{
    background-color: rgb(255, 15, 63);
}

@keyframes status{
    0%{
        opacity: 1;
        pointer-events: all;
    }
    90%{
        opacity: 1;
        pointer-events: all;
    }
    100%{
        opacity: 0;
        pointer-events: none;
    }
}