#registrationModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure the modal is above other elements */
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: 3% auto;
    text-align: center;
    z-index: 1010; /* Ensure form is on top */
    position: relative;
}

input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%; /* Make the input take up full width */
    padding: 10px; /* Add padding for better spacing */
    margin: 5px 0; /* Margin between inputs */
    border: 1px solid #ccc; /* Light border for inputs */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px; /* Text size */
    box-sizing: border-box; /* Include padding and border in element's total width */
    transition: border-color 0.3s ease; /* Smooth transition for border on focus */
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
    border-color: #4CAF50; /* Green border when focused */
    outline: none; /* Remove default focus outline */
}

button[type="submit"] {
    width: 100%; /* Make the button take up full width */
    padding: 5px;
    background-color: #4CAF50; /* Green background for the button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

button[type="submit"]:hover {
    background-color: #45a049; /* Darker green on hover */
}
