.form-container {
    max-width: 600px;
    padding: 20px;
}
.form-card {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 600px;
    text-align: center;
    position: relative;
    top: 20px;
}

.form-card form div {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between form elements */
}

input[type="number"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 10px;
    }

    .form-card {
        padding: 15px;
    }
}

@media only screen and (max-width: 600px){
.form-card {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 275px;
    text-align: center;
    position: relative;
}

}
@media (max-width: 480px) {
    body {
        padding: 20px; /* Gives some space on smaller screens */
    }

    .form-card form div {
        gap: 10px;
    }
}


.title{
    margin: -10px;
}