#notification {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background-color: red; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    z-index: 9999; 
    display: none; 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
}

#notification.alert-success {
    padding: 20px;
    margin-top: 50px;
    border-radius: 5px;
    background-color: white;
    border-color: #757b7b;
    width: 400px;
    height: 200px;
    font-size: 28px;
    display: none;
    align-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#notification #closeNotification {
    height: 40px;
    width: 100px;
    margin-top: 20px;
    font-size: 18px;
    background-color: #0A58CA;
    color: white;
    border: 1px solid #0A58CA;
}

#notification #notificationMessage {
    display: inline; 
}


#notification.alert-error {
    padding: 20px;
    margin-top: 50px;
    border-radius: 5px;
    background-color: red;
    border-color: red;
    color: white;
    width: 400px;
    height: 200px;
    font-size: 28px;
    display: none;
    align-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media screen and (max-width: 426px) {
    
#notification.alert-success {
    width: 250px;
    height: 200px;
    font-size: 19px;
}

#notification.alert-error {
    width: 250px;
    height: 200px;
    font-size: 19px;
}


}