
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
height: 100vh;
margin: 0;
}

.login-container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 40vh;
display: flex;
flex-direction: column;
align-items: center;
border: 5px solid #4CAF50;
font-size: 1em;
margin: 0 auto;
margin-top: 200px;
}

@media (max-width: 768px) {
.login-container {
font-size: 2.5em;

}
input[type="text"]{
he
}
}


.logo {
width: 100px;
height: 100px;
margin-bottom: 1rem;
background-image: url("imagen/giphy.gif");
background-size: cover;
border-radius: 50%;
border: 3px solid #4CAF50;
}

form {
width: 100%;
display: flex;
flex-direction: column;
}

label {
margin-bottom: 0.5rem;
font-weight: bold;
color: #4CAF50;
}

input[type="text"],
input[type="password"] {
margin-bottom: 1rem;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f5f5f5;
padding-right: 40%;
}

input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
padding: 0.75rem;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="submit"]:hover {
background-color: #45a049;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
margin: 15% auto;
padding: 20px;
width: 300px;
height: 100px;
text-align: center;
font-weight: bold;
font-size: 18px;
line-height: 100px;
border-radius: 10px;
background-color: white;
border: 3px solid #4CAF50;
}

#passwordInput {
margin: 0;
width: 80%;
}

.password-container {
display: flex;
align-items: center;
flex-wrap: nowrap;
margin-bottom: 5%;
}

.loading-container {
        text-align: center;
        flex-direction: column;
        align-items: center;
        background: lightgreen;
        margin-top: 40px;
    }

    .fiber-optic {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 200px;
        height: 10px;
        background-color: #555;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .fiber-optic::before,
    .fiber-optic::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: #00ff00;
        border-radius: 50%;
        animation: move 2s linear infinite;
    }

    .fiber-optic::after {
        animation-delay: 1s;
    }

    @keyframes move {
        0% {
            left: 0;
        }
        100% {
            left: 190px;
        }
    }

    .loading-text {
        font-size: 20px;
        font-weight: bold;
    }