body {
    font-family: Inter, sans-serif;
    background: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.error-messages {
    background-color: #ffdddd;
    color: #d8000c;
    border: 1px solid #d8000c;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.error-messages ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header {
    width: 100%;
    background: white;
    border-bottom: 0px solid #e0e0e0;
    padding: 20px 0;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: center; /* Center the content horizontally */
}

.header-content {
    display: flex;
    align-items: center; /* Align items vertically in the center */
    justify-content: center; /* Center items horizontally */
}

.header img {
    height: 40px;
    margin-right: 10px; /* Space between the logo and the title */
}

.header h2 {
    font-size: 1.2em;
    color: #333;
}

/* Styling the container for the form */
.signup-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Maximum width of the form container */
    padding: 40px;
    background-color: #ffffff; /* White background for the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center aligning the text */
    margin: 20px; /* Provides some spacing around the container */
}

/* Styles for the form title */
.signup-container h1 {
    font-size: 24px;
    color: #0056b3; /* A shade of blue for the title */
    margin-bottom: 20px; /* Space below the title */
}

/* Styling for form inputs */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px; /* Padding inside the input */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 9px; /* Rounded borders on the inputs */
    background-color: #f5f5f5; /* Light grey background */
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    margin-bottom: 10px; /* Margin on the bottom for spacing */
}

/* Styling for the submit button */
button {
    width: 100%;
    padding: 10px 0; /* Padding on top and bottom */
    background-color: #0056b3; /* Blue background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Larger font size for readability */
    margin-top: 20px;
}

/* Hover effect for button */
button:hover {
    background-color: #003580; /* A darker shade of blue for hover */
}

/* Styling for additional links below the form */
.signup-container p {
    font-size: 14px; /* Smaller font size for secondary text */
    margin-top: 20px; /* Spacing from the form */
}

/* Link styling */
a {
    color: #0066cc; /* Blue color for links */
    text-decoration: none; /* No underline */
}

/* Hover effect for links */
a:hover {
    text-decoration: underline; /* Underline on hover for better visibility */
}
