
/* Contenedor del login */
.container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%; /* Ajustado para móviles */
    max-width: 350px; /* Reduce el tamaño máximo */
}

/* Título */
h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Campos de entrada */
input {
    width: 80%; /* Ahora ocupa el 80% del contenedor */
    max-width: 200px; /* Máximo de 200px */
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; /* Reduce el tamaño de la fuente */
    transition: 0.3s;
}

input:focus {
    border-color: #FF4800;
    box-shadow: 0 0 5px rgba(110, 142, 251, 0.5);
    outline: none;
}

/* Botón */
button {
    width: 100%; /* Igual que los inputs */
    max-width: 200px;
    background: #FF4800;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* Iconos en los inputs */
input[type="email"] {
    background: url('https://img.icons8.com/ios/20/000000/email.png') no-repeat left center;
    padding-left: 30px;
}

input[type="password"] {
    background: url('https://img.icons8.com/ios/20/000000/lock.png') no-repeat left center;
    padding-left: 30px;
}

