*
{
	margin: 0;
	padding: 0;
	font-family:  'Poppins' , sans-serif;
    box-sizing: border-box;
}

body {
    background-image: url("../img/bg_login.jpg");
    background-size: cover;
    background-attachment:fixed;
}

section
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../img/bg_login.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.container
{
    position: relative;
    width: 420px;
    height: 580px;
    z-index: 2;
}

.login 
{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
	background-color: #fff;
    padding: 20px;
	width: 100%;
	height: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.logo
{
    margin: 10px 0;
    width: 140px;
    height: 52px;
}

.inputBx
{
    margin-bottom: 10px;
}

.inputBx label
{
	font-size: 1em;
	margin-bottom: 5px;
    padding: 0 10px;
	display: inline-block;
	color: #111;
	font-weight: 300;
	letter-spacing: 1px;	
}

.link {
    color: #333;
}

.inputBx input
{
	width: 100%;
	padding: 10px 20px;
	outline: none;
	font-weight: 400;
	border:	1px solid #607d8b;
	font-size: 16px;
	letter-spacing: 1px;
	color: #607d8b;
	background: transparent;
	border-radius: 30px;
}

.inputBx .submit
{
	background: linear-gradient(225deg, #0088c9, #02a8f8);
	color: #fff;
	outline: none;
	border: none;
	font-weight: 500;
	cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 400;
	font-size: 16px;
    transition: 0.3s;
}

.inputBx .submit:hover
{
   opacity: 0.8;
}


.infoBox
{
    position: relative;
    width: 100%;
    text-align: center;
}

.infoBox a
{
    text-decoration: none;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.infoBox a:hover
{
    color: #0088c9;
}

.text-blue {
    color: #0088c9;
}

.text-grey {
	color: #999999;	
}
.text-sucess {
    color: #19DF3C;
}

.text-center {
    text-align: center;
}

.my-5 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.timeline {
    border-left: 1px solid #CCC;
    position: relative;
    list-style: none;
}

.timeline .timeline-item {
    position: relative;
}

.timeline .timeline-item::after {
    position: absolute;
    top: 0;
    display: block;
    background-color: #7B7B7B;
    left: -38px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
}

.timeline-end {
    position: absolute;
    bottom: -25px;
    display: block;
    background-color: #35DC67;
    left: -12px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-end {
    margin-top: 5px;
    color: #FFF;
}

.timeline .timeline-item-principal {
    position: relative;
}

.timeline .timeline-item-principal::after {
    position: absolute;
    top: 0;
    display: block;
    background-color: #1591E0;
    left: -41px;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    content: "";
}

.underline-n {
	text-decoration: none;	
}

.card {
    min-height: 500px;
}