body {
    font-family: Arial, sans-serif;
    background-image: url('images/background.jpg'); /* Replace with your desired background image */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-container {
    width: 100%;
    max-width: 350px; /* Reduced the max-width to make the card smaller */
    padding: 15px; /* Reduced padding for the container */
}

.signup-card {
    background-color: rgba(255, 255, 255, 0.7); /* Slight transparency */
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    padding: 10px; /* Reduced padding inside the card */
    text-align: center;
}

.signup-card h1 {
    font-size: 28px;
    color: #004d80;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    margin-bottom: 15px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 10px;
    font-size: 18px;
    color: #0073e6;
}

.input-wrapper input {
    padding: 5px 5px 5px 35px; /* Add padding to account for icon */
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

button {
    padding: 12px 20px;
    background-color: #0073e6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 12px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005bb5;
}

.extra-links {
    margin-top: 15px;
}

.extra-links a {
    color: #005bb5;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 6px;
}

.extra-links a:hover {
    color: #003f87;
    text-decoration: underline;
}

.home-link {
    margin-top: 15px; /* Reduced margin to bring closer to card */
    text-align: center;
}

.home-link img.logo {
    width: 100px; /* Adjust logo size here */
    height: auto;
    display: inline-block;
}
