/* registration.css */

/* Form container */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f7f7f7;
}

/* Form heading */
h1 {
    text-align: center;
    color: #333;
}

/* Input labels */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

/* File input field */
input[type="file"] {
    margin-top: 5px;
    font-size: 16px;
}

/* Terms and conditions checkbox label */
label[for="terms_and_conditions"] {
    font-weight: normal;
}

/* Submit button */
input[type="submit"] {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
}

/* Submit button on hover */
input[type="submit"]:hover {
    background-color: #0056b3;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
textarea {
    width: 100%; /* Set the width to 100% of their container */
    max-width: 400px; /* Set a maximum width to prevent them from extending too far */
    box-sizing: border-box; /* Include padding and border in the width */
}
