* {
    font-family: 'Trebuchet MS', Helvetica, sans-serif !important;
}
body {
    font-family:'Trebuchet MS', Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f3f4f6;
    color: #333;
}
h1 {
    margin-top: 50px;
}
form {
    margin-top: 30px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="date"] {
    padding: 10px;
    font-size: 1em;
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc(100% - 22px);
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="submit"] {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #0056b3;
}
.hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
}
.hamburger-icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-icon div {
    width: 100%;
    height: 5px;
    background-color: #333;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    text-align: left;
}
.dropdown-menu a:hover {
    background-color: #f1f1f1;
}
