Gradient Alert Box
/* The alert message box */
.alert {
padding: 20px;
background: linear-gradient(90deg, rgba(249,128,119,1) 0%, rgba(255,99,87,1) 27%, rgba(249,17,0,1) 100%);
color: white;
margin-bottom: 15px;
}
/* The close button /
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
/ When moving the mouse over the close button */
.closebtn:hover {
color: black;
}