* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    margin-top: 0;
    min-height: 100vh;
    color: black;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #8CDDB6;
    margin-bottom: 1%;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul h1 {
    display: flex;
    padding-right: 30%;
}

nav li {
    height: 50px;
}

.hideOnComputer {
    display: none;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 10%;
    height: 3rem;
}

nav a:hover {
    background-color: white;
}

.dark-mode nav a:hover {
    background-color: black;
    color: white;
}

.box {
    padding: 2.5rem 2.5rem;
    box-shadow: 10px 10px 10px rgba(72, 72, 72, 0.5);
    background-color: #8CDDB6;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgb(202, 202, 202);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

footer {
    position: absolute;
    display: flex;
    flex-direction: row;
    background-color: #8CDDB6;
    padding-bottom: 1%;
}

h1 {
    display: block;
    text-align: center;
}

.dark {
    display: flex;
    align-items: center;
}

.light {
    display: none;
    align-items: center;
}

p {
    padding: 1%;
}

div img {
    width: 70%;
    justify-content: center;
    padding-left: 30%;
}

#icon {
    width: 40%;
}

#iconytxt {
    align-items: center;
    display: flex;
}

#img {
    width: 75%;
    justify-content: center;
    padding-left: 20%;
}

#divfoot {
    display: flex;
    flex-direction: row;
}

@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    .hideOnComputer {
        display: block;
    }

    .sidebar {
        display: none;
        flex-direction: column;
    }

    #divfoot {
        flex-direction: column;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.soli{
    margin-bottom: 1rem;
}
form label {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="time"] {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="date"]:focus,
form input[type="time"]:focus {
    border-color: #4CAF50;
    outline: none;
}

form input[type="submit"] {
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

.dark-mode form input[type="text"],
.dark-mode form input[type="email"],
.dark-mode form input[type="tel"],
.dark-mode form input[type="date"],
.dark-mode form input[type="time"] {
    background-color: #333;
    color: white;
    border: 1px solid #555;
}

.dark-mode form input[type="submit"] {
    background-color: #333;
    color: white;
}

.dark-mode form input[type="submit"]:hover {
    background-color: #555;
}

.dark-mode form {
    background-color: #444;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}