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

.signup-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

table.signup {
    width: 100%;
    margin-bottom: 20px;
    border-spacing: 15px;
}

td {
    padding: 10px;
}

.input-container {
    position: relative;
    width: 100%;
}

input[type="text"], input[type="email"], input[type="password"], input[type="time"], input[type="date"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #fff;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="time"]:focus, input[type="date"]:focus {
    border-color: #007bff;
    outline: none;
}

label.info {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #aaa;
    pointer-events: none; 
    /* transition: all 0.3s ease; */
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -10px; /* Move the label above the input */
    font-size: 12px;
    color: #007bff; /* Color of the label when focused */
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

button:hover {
    background-color: #45a049;
}

a {
    display: block;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    line-height: 1;
}

a:hover {
    text-decoration: underline;
}

label {
    margin-top: 5px;
}

.workdays-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping if needed */
    justify-content: center; /* Align checkboxes at the start */
    gap: 10px; /* Adjust gap between tags */
}

.workday-checkbox {
    display: inline-flex;
    align-items: center;
    border: 1px solid #007bff; /* Thinner blue border */
    border-radius: 20px; /* Rounded corners, but smaller than before */
    /* padding: 5px 15px; Smaller padding for a compact appearance */
    background-color: #fff; /* White background by default */
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none; /* Prevent text selection */
}

.workday-checkbox input[type="checkbox"] {
    display: none; /* Hide the actual checkbox input */
}

.workday-checkbox input[type="checkbox"]:checked + span {
    background-color: #007bff; /* Blue background when checked */
    color: white; /* White text when checked */
}

.workday-checkbox:hover {
    background-color: #f0f8ff; /* Light blue background when hovered */
    border-color: #0056b3; /* Darker border when hovered */
}

.workday-checkbox span {
    padding: 3px 10px; /* Smaller padding to fit the compact style */
    border-radius: 20px; /* Rounded corners to match the tag shape */
    display: inline-block; /* Ensure span takes up space */
}
