 /* Start Alert Messages */
 .error {
     padding: 10px;
     font-size: small;
     background-color: #f44336;
     color: white;
     margin-top: 15px;
     border-radius: 8px;
 }

 .success {
     padding: 10px;
     font-size: small;
     background-color: green;
     color: white;
     margin-top: 15px;
     border-radius: 8px;
 }

 /* End Alert Messages */

 .signup-footer {
     background-color: white;
     height: 60px;
     align-items: center;
     display: flex;
     width: 100%;
 }

 .signup-copyright {
     font-size: 15px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
#footer{
    padding: 20px;
    display: flex;
    width: 90%;
    margin: 100px auto 0 auto;
    align-items: center;
    justify-content: space-between;
}
footer{
    background-color: #fff;
}
p{
    margin: 0;
    height: 20px;
}
@media(max-width:520px){
    #footer{
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }
    .signup-copyright{
        order: 2;
    }
}