/* General styling */
body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    background-color: white; /* Changed background to white */
    color: #172b4d;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Header styling */
.header {
    position: absolute;
    top: -70px; /* Move the logo further up */
    left: -150px; /* Move the logo further left */
}

.header img {
    height: 300px; /* Set the height of the logo */
    width: auto; /* Maintain the aspect ratio */
}

/* Centering the signup card */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box; /* Include padding in height calculation */
}

.signup-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.signup-card h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #172b4d;
}

/* Input styling */
.input {
    margin-bottom: 20px;
    padding-left: 10px; /* Add padding to the input container */
    padding-right: 10px; /* Add padding to the input container */
}

.input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

/* Button styling */
button {
    width: calc(100% - 20px); /* Reduce button width to fit padding */
    padding: 10px;
    background-color: #0052cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #003d99;
}

/* Footer styling */
.footer {
    background-color: #0052cc;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e6e6fa; /* Light purple/blue border */
}

.footer a {
    color: white;
    text-decoration: none;
}

/* Error message styling */
.error-message {
    margin-bottom: 10px;
    color: red;
}
