.menu{
    width: 80px;
    height: 30px;
    background-color: rgba(81, 241, 66, 0.9);
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 2%;
    transition: width 0.4s ease-in-out;
    position: fixed;
    top: 1%;
    z-index: +99;
}

.menu h1{
    font-family: "icon";
    font-size: 4VW;
    cursor: pointer;
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;

}

.menu-list{
    width: 300px;
    height: 175px;
    background-color: rgba(81, 241, 66, 0.9);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: -100%;
    top: calc(1% + 30px);
    transition: left 0.4s ease-in-out;
    overflow: hidden;
    z-index: +99;
}

.menu-list h1{
    font-family: 'alata-regular';
    color: #dfffd9;
    height: fit-content;
}

.tabs{
    height: 20%;
    width: 300px;
    display: flex; 
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    font-family: 'alata-regular';
    padding-top: 5px;
}

.tabs li{
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.tabs li:hover {
    color: #fff;
}

.tabs li:active {
    color: #ccc;
}

.forms {
    display: flex;
    overflow: hidden;
    height: 80%;
    padding: 10px;
    background-color: rgba(81, 241, 66, 0.8); /* Lighter background for forms */
    border-radius: 0 0 10px 10px; /* Rounded bottom corners */
}

.forms form {
    height: 100%;
    min-width: 300px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    padding-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.forms form input {
    width: 80%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 0.9em;
    border: 1px solid #44d163; /* Matching border color */
    border-radius: 5px;
    background-color: #dfffd9; /* Light green input background */
    color: #333;
}

.forms form button {
    width: 80%;
    padding: 8px;
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
    background-color: #44d163; /* Matching green button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.forms form button:hover {
    background-color: #3bb55c; /* Slightly darker green for hover */
}

.forms form button:active {
    background-color: #32a452; /* Even darker green for active */
}

@media(max-width: 320px){
    .menu{
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu h1{
        font-size: 4Vh;
    }
}
@media(max-width: 500px){
    .menu{
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .menu h1{
        font-size: 4Vh;
    }
}