/* Toast notification styles */
.toast {
    position: fixed;
    top: 20px;  /* Position the toast 20px from the top */
    right: 20px; /* Position the toast 20px from the right */
    padding: 25px 30px;
    background-color: #4CAF50; /* Green for success */
    color: white;
    border-radius: 5px;
    opacity: 0;
    animation: toastAnimation 3s forwards;
    z-index: 9999;
}

.toast.error {
    background-color: #f44336; /* Red for error */
}

@keyframes toastAnimation {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

button {
    padding: 10px 25px;
    margin-top: 15px;
    background: #a71414;
    color: white !important;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Roboto';
    border: solid 2px #a71414;
}
.form-styles {
   
 color: white !important;
 font-size: 15px;
 font-weight: 500;
margin-top: 20px;
        
        
}
label {
    margin-bottom: 20px;
}
input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=number],
input[type=url],
input[type=date],
input[type=tel],
select,
textarea,
.form-control {
    border-color: rgba(102, 114, 121, 0.25);
    background-color: rgba(255, 255, 255, 1);
    color: rgba(102, 114, 121, 1);
    margin-bottom: 20px;
}