/*
 * Copyright (c) 2022 PPBSA. Todos los derechos reservados.
 *
 * Este software es propiedad de PILOTOS DEL PUERTO DE BARRANQUILLA S.A. y está protegido
 * por las leyes de derechos de autor en Colombia y tratados internacionales.
 * Su uso, copia, modificación o distribución sin autorización está prohibida.
 *
 * Para obtener permisos, contáctenos en: calidad@pilotosbarranquilla.com
 */
 
 @charset "utf-8";
/* CSS Document */

*{
    border: 0;
    padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', arial;
    font-size: 14px;
    color: #222;
}

/* Etiquetas estructurales */

html, body {
    height: 100%;
}

hr{
    color: #bbb;
}

a{
    text-decoration: none;
}

/* Etiquetas estructurales propias */

submit-spin-white{
    background-image: url(../images/iconos/f7--helm--white.svg);
}

submit-spin-primary{
    background-image: url(../images/iconos/f7--helm--primary.svg);
}

/* Clases */

.auth{
    min-height: 790px;
}

.auth-container{
    width: 64%;
}

.auth-container-logo-img{
    width: 112px;
    height: 96px;
	background-image: url(../images/logo12.png);
	background-repeat: no-repeat;
    background-size: 100% 100%;
}

.auth-container-form{
    width: 460px;
}

.auth-side-img{
    width: 36%;
    min-width: 460px;
    border-left: 2px solid #eee;
	background-image: url(../images/puerto.webp);
	background-repeat: no-repeat;
    background-size: 100% 100%;
}

.auth-container-form .mbtn-primary{
    font-weight: bold;
    padding: 9px 10.15px;

}

.submit-spin{
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 21px;
    height: 21px;
    background-size: cover;
    margin: 0 auto;
}


/* Animaciones */



/*---RESPONSIVE---*/
@media only screen and (max-width: 1020px) {
    .auth-container{
        width: 100%;
    }
    .auth-container-logo-img{
        margin: auto;
    }
    .auth-side-img{
        display: none;
    }
}