/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Changed height to min-height to allow scrolling if needed */
    padding-bottom: 50px; /* Added padding to prevent content from touching the bottom */
}

/* Signup Container */
.signup-container {
    background-color: #fff;
    padding: 40px; /* Increased padding for better spacing */
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 20px; /* Added margin to prevent cutoff at the bottom */
}

.signup-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #00796b;
}

.signup-container h2 {
    margin-bottom: 15px;
    color: #00796b;
}

.signup-container p {
    font-size: 14px;
    color: #555;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input Group */
.input-group {
    text-align: left;
}

.input-group label {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px; /* Increased padding for better usability */
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease-in-out;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #00796b;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 121, 107, 0.5);
}

/* Vehicle Information Section */
h3 {
    font-size: 16px;
    color: #222;
    margin-top: 20px; /* Added margin for spacing */
    text-align: left;
}

/* Button Styles */
.cta-button {
    background-color: #00796b;
    color: white;
    padding: 14px; /* Increased padding for better look */
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #004d40;
    transform: scale(1.05);
}

/* Link Styling */
p a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

p a:hover {
    text-decoration: underline;
    color: #004d40;
}

/* Responsive Design */
@media (max-width: 600px) {
    .signup-container {
        width: 95%;
        padding: 25px; /* Adjusted padding for smaller screens */
        margin-bottom: 30px; /* Ensures spacing at bottom for small screens */
    }
}