body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 40px 0;
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
table {
    width: 90%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
th {
    background: dimgrey;
    color: white;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
td {
    padding: 14px;
    border-bottom: 1px solid dimgrey;
    font-size: 15px;
}
a {
    color: #0077ff;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    color: #0058cc;
    text-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.submit {
    text-align: center;
    margin-top: 30px;
}
.submit a {
    display: inline-block;
    margin: 12px;
    padding: 12px 25px;
    color: black;
    background: lightblue;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.25s;
}

.submit a:hover {
    box-shadow: 0 7px 18px rgba(0,0,0,0.25);
}
form {
    width: 450px;
    margin: 0 auto;
    padding: 25px 30px;
    background: rgba(255, 219, 247, 0.65);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="date"],
textarea,
input[type="color"] {
    width: 370px;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.7);
    outline: none;
    transition: 0.25s;
}

textarea {
    height: 120px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #6a7bff;
    box-shadow: 0 0 8px rgba(100,120,255,0.4);
}

input[type="submit"] {
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    color: black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.25s;
}

input[type="submit"]:hover {
    box-shadow: 0 7px 18px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
body > a {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 25px;
    font-weight: 600;
    color: #0058cc;
}

body > a:hover {
    color: #003e94;
    text-shadow: 0 0 5px rgba(0,0,0,0.25);
}
img{
    width: 300px;
    height: 250px;
}