body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #ece9e6, #fff);
}
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
}
.flyout-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    transition: right 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
}
/* .flyout-menu {

} */
.flyout-menu.open {
    right: 0;
}
/* Close Btn */
.close-btn {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 20pt;
    cursor: pointer;
    color: rgb(80, 74, 244);
}
.login-form input{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.login-form button:hover {
    background-color: #005a93;
}
a {
    text-decoration: none;
    /* color: rgb(14, 13, 51); */
    color: gainsboro;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}
a:hover {
    color: rgb(80, 74, 244);
}