
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: #dfeaed9e;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
}

.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.special1 {
    background-color: White;
    display: block;
    flex-direction: column;
    border-radius: 10px;
    align-items: flex-start;
    position: fixed;
    top: 4px;
    right: 3px;
    border-bottom: 1px solid black;
}

.button1231 {
    background: #444;
    background-color: #444;
    border-radius: 10px;
    padding: 8px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.accountsettings {
    padding: 10px;
    display: flex; /* Use flexbox layout */
    flex-direction: column; /* Arrange children vertically */
    gap: 10px;
}

.accountsettingsa {
    color: black; /* Set text color to black */
    text-decoration: underline; /* Add underline */
}

.accountsettings ul {
    gap: 5px;
    align-items: center;
}

.accountsettings li {
    padding: 5px;
    align-items: center;
}

.top-accountsettings {
    position: absolute; /* Position the div absolutely */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #adc0d9;
    padding: 10px;
    border-bottom: 1px solid #636876;
}

.bottom-accountsettings {
    position: absolute; /* Position the div absolutely */
    bottom: 0; /* Align the div to the bottom */
    left: 0; /* Align the div to the left */
    width: 100%; /* Make the div stretch across the width of its container */
    background-color: #adc0d9; /* Example background color */
    padding: 10px; /* Example padding */
    border-top: 1px solid #636876;
}

.menuaccount {
    position: fixed;
    top: 0;
    left: -250px; /* Start the menu off-screen */
    width: 15%;
    height: 100%;
    background-color: #dfe5ed;
    border: 1px solid #adc0d9;
    padding: 20px;
    transition: left 0.3s ease; /* Add smooth transition effect */
}

    .menuaccount.open {
        left: 0; /* Move the menu into view */
    }

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center horizontally */
    position: absolute;
    top: 0px; /* Move to 50% from the top */
    left: 50%; /* Move to 50% from the left */
    transform: translate(-50%); /* Centering trick */
}

.highlight {
    border: 2px solid black !important; /* You can change this to any color you want */
    border-radius: 10px;
}

.menu {
    display: flex;
    border-radius: 10px;
    padding: 0px;
    background-color: #adc0d9;
}


    .menu ul {
        list-style: none;
        display: inline-flex;
        align-items: center;
    }

    .menu li {
        width: max-content;
        border: 2px solid transparent; /* You can change this to any color you want */
        border-radius: 10px;
        margin: 5px;
        padding: 10px;
    }

    .menu a {
        text-decoration: none;
        color: black;
        font-weight: 500;
        font-size: 18px;
    }

.menu1 {
    flex-direction: column;
    border: 1px solid #adc0d9;
    display: none;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center; /* Center horizontally */
    position: absolute;
    top: 50%; /* Move to 50% from the top */
    left: 50%; /* Move to 50% from the left */
    transform: translate(-50%, -50%); /* Centering trick */
    width: 600px; /* Fixed width for the menu */
    background-color: #dfe5ed; /* Just for visualization */
}

    .menu1 ul {
        width: inherit;
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu1 li {
        width: max-content; /* Adjust width for 3 elements per row with margin */
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
        text-align: center;
        background-color: #fff; /* Add background color to make each item visible */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
        align-content: center;
    }



    .menu1 a {
        color: black;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        font-weight: 400;
    }










.menu2 {
    display: flex;
    background: #444;
    border-radius: 20px;
    padding: 0px;
}

    .menu2 ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
    }

    .menu2 li {
        margin-right: 20px;
        padding: 10px;
    }

    .menu2 a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size: 16px;
    }

.button123 {
    background: #444;
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.special {
    background: #fff;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    /* Positioning properties */
    position: fixed;
    top: 10px; /* Adjust this value as needed */
    right: 10px; /* Adjust this value as needed */
}







/* Container Styles */
/* Container Styles */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 430px;
    width: 100%;
}

    /* Form Styles */
    .container .form {
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.container .form header {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
}

/* Input and Select Styles */
.container .form input,
.container .form select {
    height: 50px;
    width: calc(100% - 20px);
    padding: 0 15px;
    font-size: 16px;
    margin: 1rem 0;
    border: 1px solid #cccccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .container .form input:focus,
    .container .form select:focus {
        border-color: #007bff; /* Change border color on focus */
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1); /* Add focus shadow */
    }

/* Button Styles */
.container .form button {
    height: 50px;
    width: calc(100% - 20px);
    background-color: #007bff;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    margin: 1rem 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.4s;
}

    /* Button Hover Effect */
    .container .form button:hover {
        background-color: #0056b3;
        transform: translateY(-2px); /* Add subtle lift effect on hover */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
    }

/* Link Styles */
.container .form a {
    font-size: 14px;
    color: #009579;
    text-decoration: none;
    transition: color 0.4s;
}

    /* Link Hover Effect */
    .container .form a:hover {
        color: #007d66;
    }












.signup {
    font-size: 14px;
    text-align: center;
}

    .signup label {
        color: #009579;
        cursor: pointer;
    }

        .signup label:hover {
            text-decoration: underline;
        }




#MenuUpdate {
    display: flex;
    justify-content: center;
}

#m1 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    #m1 li {
        margin: 10px;
        text-align: center;
    }

        #m1 li a {
            display: block;
            width: 150px;
            height: 150px;
            padding: 22px;
            border-radius: 15px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

            #m1 li a:hover {
                transform: scale(1.1);
            }

            #m1 li a img {
                max-width: 70px;
                max-height: 70px;
                margin-bottom: 10px;
            }




