body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 30px auto; /* Reduced margin */
    padding: 15px; /* Reduced padding */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Lighter shadow */
}

.title {
    text-align: center;
    font-size: 20px; /* Reduced font size */
    color: #4CAF50;
    margin-bottom: 15px; /* Reduced spacing */
}

.form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* Reduced margin */
}

label {
    flex: 1; /* Align labels beside inputs */
    font-weight: bold;
    font-size: 14px; /* Reduced label size */
    margin-right: 8px; /* Space between label and input */
}

.input, select {
    flex: 2; /* Inputs beside labels */
    padding: 8px; /* Reduced padding */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px; /* Reduced input font size */
    width: 100%; /* Set uniform width */
}

.button {
    padding: 8px 12px; /* Reduced button size */
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #45a049;
}

.back-link {
    display: block;
    margin-top: 15px; /* Reduced spacing */
    text-align: center;
    text-decoration: none;
    color: #4CAF50;
}

.back-link:hover {
    text-decoration: underline;
}
