
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-minimal {
    background: #fff;
    padding: 32px 28px 28px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 2px solid #000;
    min-width: 320px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


h2 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}


input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box;
    background: #fafafa;
}

input:focus, select:focus {
    outline: none;
    border-color: #ff7f00;
    background-color: #fff;
}


button {
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
button:hover {
    background: #444;
}

/* Estilo para el contenedor de la contraseña */
.password-container {
    position: relative;
    width: 100%;
}

/* Estilo para el ícono de ojo */
.eye-icon {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5rem;
    color: #ff7f00;
    pointer-events: auto;
}

/* Añadir una pequeña corrección si el input tiene border-box */
input[type="password"], .eye-icon {
    box-sizing: border-box;
}


/* Eliminar estilos de gif */
