﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f2f5f7;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 10px;
}

.link-olvido {
    margin-top: 15px;
}

    .link-olvido a {
        text-decoration: none;
        color: #4CAF50;
        font-size: 14px;
    }

        .link-olvido a:hover {
            text-decoration: underline;
        }





    @media (min-width: 769px) {
        .topbar .logo {
            display: none; /* Oculta logo de topbar en pantallas grandes */
        }
    }

    @media (max-width: 768px) {
        .sidebar h3 {
            display: none; /* Oculta logo de sidebar en móviles */
        }
    }



