/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styles */
.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

/* Heading Styles */
h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

/* Label Styles */
label {
    margin-bottom: 5px;
    color: #555;
}

/* Input Styles */
input {
    margin-bottom: 3px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Button Styles */
button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

/* Navigation Button Styles */
button.secondary {
    background-color: #6c757d;
}

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

/* Navigation Button Styles */
button.secondary-light {
    background-color: #d3d3d3;
}

button.secondary-light:hover {
    background-color: #c3c3c3;
}

.full-width {
  width: 100%;
}

.error-message {
    color: red;
    font-size: 0.875em; /* Adjust size as needed */
    margin-bottom: 0.75em;
}