/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #F48838, #673E86, #099A8C);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
  
/* Container for the content */
.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 1rem;
}
  
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
  
p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
  
/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
  
input[type="email"] {
    padding: 0.8rem;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}
  
.delete-button {
    padding: 0.8rem 2rem;
    background-color: #fff;
    color: #673E86;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
  
.delete-button:hover {
    background-color: #673E86;
    color: #fff;
}

/* Success message styling */
#successMessage {
    margin-top: 10px;
    color: #4CAF50;
    font-size: 1rem;
}

/* Success message styling */
#errorMessage {
    margin-top: 10px;
    color: red;
    font-size: 1rem;
}