
body {
    background: linear-gradient(to right, #4B006E, #8A4DBE);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0B3FF;
    margin: 0;
    padding: 0;
}

.container, .form-container {
    background-color: rgba(107, 45, 143, 0.85);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 0 15px #E0B3FF;
    color: #F3E0FF;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background: #6B2D8F;
    color: #F3E0FF;
}

input[type="submit"], button {
    background-color: #8A4DBE;
    color: #F3E0FF;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover, button:hover {
    background-color: #A060D1;
}

h1, h2, h3, label {
    color: #F3E0FF;
    text-align: center;
}

a {
    color: #E0B3FF;
    text-decoration: none;
}
a:hover {
    color: #F3E0FF;
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(75, 0, 110, 0.6);
    color: #F3E0FF;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #A060D1;
    background-color: rebeccapurple;
    color: hotpinks;
}

th {
    background-color: rgb(139, 0, 139);
}

tr:hover {
    background-color: rgba(138, 77, 190, 0.3);
}


/* Improved table styles */

table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 0, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}
th, td {
  padding: 12px 15px;
  text-align: left;
  color: beige;
}
th {
  background-color: rgb(139, 0, 139);
}
tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
