@font-face {
    font-family: 'Segoe UI';
    src: url('../fuentes/SegoeUI.woff2') format('woff2'), url('../fuentes/SegoeUI.woff') format('woff'), url('../fuentes/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fuentes/SegoeUI-Bold.woff2') format('woff2'), url('../fuentes/SegoeUI-Bold.woff') format('woff'), url('../fuentes/SegoeUI-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI Light';
    src: url('../fuentes/SegoeUI-Light.woff2') format('woff2'), url('../fuentes/SegoeUI-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Segoe UI', Roboto, Tahoma, sans-serif;
    background: url("../imagenes/backoffice_bg.jpg") no-repeat center center fixed;
    background-size: cover;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: #666;
}

/* Typography */
h1#title {
    font-family: 'Segoe UI', Roboto, Tahoma, sans-serif;
    font-weight: 300;
    font-size: 3.2em;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    margin: 0 auto;
    padding-top: 80px;
    max-width: 1000px;
    text-align: center;
    position: relative;
    top: 0px;
}

h1#title span span {
	font-weight: 400;
}

h2 {
	text-transform: uppercase;
	color: white;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 1.4em;
	line-height: 2.8em;
}

a {
	text-decoration: none;
	color: #666;
}

a:hover {
	color: #72a73c;
}

p.small {
	font-size: 0.8em;
	margin: 20px 0 0;
}


/* Layout */
.container {
	margin: 0;
}

.top {
	margin: 0;
	padding: 0;
	width: 100%;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.login-box {
    background-color: #F4ECD0;
    max-width: 340px;
    margin: 0 auto;
    position: relative;
    top: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 50px rgba(0,0,0,0.5);
    text-align: center;
    -webkit-animation-duration: 1s;
    -webkit-animation-delay: 1s;
}


/* Asegura que el contenedor del formulario esté centrado */
/*.mi-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;*/ /* Asegura que el contenedor ocupe todo el ancho disponible */
    /*padding: 20px;
}*/

.mi-login {
    display: block;
    width: 100%; /* Asegura que ocupe todo el ancho */
    padding: 20px;
}

    .mi-login table {
        width: 100%; /* La tabla debe ocupar el 100% del ancho del contenedor */
        table-layout: fixed; /* Asegura que las celdas tengan un ancho uniforme */
    }

    .mi-login td {
        display: block; /* Hace que las celdas se comporten como bloques */
        width: 100%; /* Asegura que las celdas ocupen todo el ancho disponible */
        text-align: center; /* Centra el contenido dentro de cada celda */
        margin-bottom: 10px; /* Agrega espacio entre las celdas */
    }





    /* Estilo de las etiquetas (centradas) */
    .mi-login .LabelMantenimiento {
        display: block;
        text-align: center;
        margin-bottom: 5px;
        /*font-size: 14px;
        font-weight: bold;*/
    }

    /* Estilo de los TextBox */
    .mi-login .input[type="text"], .mi-login input[type="password"] {
        display: block;
        margin: 0 auto 15px auto; /* Centra los TextBox */
        padding: 8px;
        width: 100%;
        max-width: 200px;
        box-sizing: border-box;
    }

    /* Botón centrado */
    .mi-login .button {
        display: block;
        margin: 10px auto 0 auto;
        padding: 8px 20px;
        font-size: 14px;
        background-color: #FF9900;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        text-align: center;
    }

        .mi-login .button:hover {
            background-color: #ff7700;
        }



.selected {
	color: #665851!important;
	transition: 0.5s;
}

/* Animation Delay */
#logo {
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2s;
}

