@import url('https://fonts.googleapis.com/css2?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}
.contactForm{
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%, #03a9f5 30%, #03a9f5 100%);
    position: relative;
    padding: 40px 100px;
    color: #0a0101;
    flex-direction: column;
}

.form-group{
    display: flex;
    flex-direction: column;
    width: 600px;
}
.box{
    margin-left: 30%;
}
.title{
    margin-left: 30%;
}
.btn{
    background: #e70505;
    color: aliceblue;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
}
#status{
    margin-top: 20px;
    color:blue;
    font-size: 12px;
}

#status.success{
    color: green;
    animation: status 4s ease forwards;
}
#status.error{
    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;
    }
}