form {
    width: 100%;
}

label {
    display: block;
    margin-top: 5px;
    margin-bottom: 2px;
    color: black;
    font-weight: bold;
}

input[type=email],
input[type=tel],
input[type=password],
input[type=text] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Makes sure the padding doesn't increase the total width */
    font-size: 16px;
}

button[type="submit"],
button[type="button"] {
    background-color: #467E29;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    align-self: center;
    margin-top: 20px;
    font-family: Ubuntu, sans-serif;
}

button[type="submit"]:hover,
button[type="button"]:hover {
    background-color: #91E49C;
}
button[type="button"] {
    margin-bottom: 20px;
    font-family: Ubuntu, sans-serif;
}

.back-button {
    /* position: absolute; */
    top: 20px;
    left: 20px;
    /* margin-bottom: 200px; */
    background-color: gray;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.back-button:hover {
    background-color: darkslategray;
    color: white;
}
.error {
    color: #D8000C; /* Red text color for error messages */
    background-color: #FFD2D2; /* Light red background */
    border: 1px solid #D8000C; /* Red border to make it stand out */
    padding: 10px;
    margin: 10px 0; /* Adds space above and below the error div */
    border-radius: 5px; /* Rounded corners for a smoother look */
    text-align: center; /* Centers the text within the div */
    font-size: 1em; /* Ensures readable text size */
}