body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px;
}

h2 {
    text-align: center;
    color: #333;
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

/* Header styling */
header a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
}

header a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Secondary Button for "Back" */
footer button {
    background-color: #6c757d;
    font-size: 14px;
    padding: 8px 15px;
    width: auto;
    margin: 0 auto;
    display: block;
}

footer button:hover {
    background-color: #5a6268;
}
