    .menu-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        list-style: none;
        display: flex;
    }

    .menu li {
        margin-right: 20px;
    }

    .menu a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 16px;
        transition: color 0.3s;
    }

    .menu a:hover {
        color: #333;
    }
    body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }

    .container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    }

    form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }

    label {
    font-weight: bold;
    }

    input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    }

    button {
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    }   

    button:hover {
    background-color: #45a049;
    }