/* Custom styles for login and registration forms */
#custom_login_form,
#custom_registration_form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#custom_login_form input[type="email"],
#custom_login_form input[type="password"],
#custom_registration_form input[type="email"],
#custom_registration_form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#custom_login_form input[type="submit"],
#custom_registration_form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#custom_login_form input[type="submit"]:hover,
#custom_registration_form input[type="submit"]:hover {
    background-color: #0056b3;
}
