body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    color: cyan;
    display: flex;
    flex-direction: column;
    min-height: 5vw;
    text-shadow: 0 0 10px cyan;
}

.main-content {
    flex-grow: 1;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-bottom: 2px solid cyan;
    padding: 25px 0;
    position: relative;
    box-shadow: 0 0 10px cyan;
}

.title-container {
    text-align: center;
}

.title-container .home-link {
    text-decoration: none;
    display: inline-block;
}

.title-container .logo {
    min-height: 0px;
    min-width: 400px;
    max-width: auto;
    max-height: auto;
    display: flex;
    margin: 0px;
    padding-top:0px;
    filter: brightness(0.9);
    transition: filter 0.3s;
    align-itens: center;
    pointer-events: none;
}

.title-container .logo:hover {
    filter: brightness(1.2);
}

.auth-tabs {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.auth-tabs a {
    text-decoration: none;
    color: cyan;
    font-weight: 500;
    padding: 1px 1px;
    border: 1px solid cyan;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 80px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    box-shadow: 0 0 10px cyan;
}

.auth-tabs a:hover {
    background-color: cyan;
    color: #fff;
    box-shadow: 0 0 2opx cyan;
}


main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(77vh - 70px);
}
footer {
    background-color: #1c1c1c;
    color: cyan;
    padding: 1px 0;
    text-align: center;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 9px;
    width: 100%;
    position: relative;
    margin-top: auto;
    box-shadow: 0 0 20px cyan;
    border-top: 2px solid cyan;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    box-sizing: border-box;
}

footer .company-info,
footer .social-media {
    max-width: 48%;
    flex-basis: 48%;
    margin: 0 auto;
}

footer .company-info {
    text-align: left;
}

footer .social-media {
    text-align: left;
}

footer h3, footer h4 {
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    text-decoration: none;
    color: cyan;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 10px cyan;
}

footer ul li a:hover {
    color: white;
    text-shadow: 0 0 20px cyan;
}


@media (max-width: 768px) {
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    footer .company-info,
    footer .social-media {
        max-width: 100%;
        text-align: center;
    }

    footer .company-info,
    footer .social-media {
        margin-bottom: 10px;
    }
}
