html, body {
    height: 100%;
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}
a {
    font-weight: 500;
    text-decoration: underline;
    color: #e5322d;
    cursor: pointer;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-family: Graphik, Arial, sans-serif;
}
.content {
    flex: 1;
    margin-top: 50px;
}
.navbar {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #009dff;
    color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.navbar-logo {
    font-size: 24px;
    font-weight: bold;
}
.navbar-services {
    display: flex;
    gap: 30px;
}
.navbar-services a {
    text-decoration: none;
    color: #fff;
}
.navbar-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-main {
    background: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 8px solid #fff;
}

.footer-main .separator {
    margin-top: 5px;
    margin-bottom: 24px;
    width: 100%;
    border-bottom: 1px solid #b4b4b4;
}

.footer-main__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-main__info {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-items: center;
}

.slogan {
    justify-self: end;
    margin: 20px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style-type: none;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    color: #da0d0d;
}

.auth__form {
    min-height: 80vh;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: auto;
    flex-direction: column; /* Add this line to stack divs vertically */
}

.login-form {
    padding: 50px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form p{
    margin: 10px 0;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 250px;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #000000;
    box-sizing: border-box; /* Aggiunge padding e bordo all'interno della larghezza e altezza totale */
    border-radius: 5px; /* Arrotonda i bordi */
}

.login-form input[type="submit"] {
    width: 150px;
    padding: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.login-form input[type="submit"]:hover {
    background-color: #0056b3;
}

.btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 600;
    border: none;
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-shadow: none;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 20px;
    line-height: 26px;
    color: #fff;
    background-color: #e5322d;
}

.btn--green {
    background-color: rgb(60, 255, 0);
}

.btn--blue {
    background-color: rgb(0, 183, 255);
}

.btn--trasparent {
    background-color: #ffffff81;
}

.btn--sm {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 600;
    border: none;
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-shadow: none;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 20px;
    line-height: 26px;
    font-size: 12px;
    line-height: 18px;
}