*{
	margin: 0px;
	padding: 0px; 
}
p
{
	margin-bottom: 0px !important;
}

/*//////////////////////////////////////////////////////////////////
[ BACKGROUND ]*/
.limiter 
{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background: url(../img/bg_login.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container-logo
{
    width: 55%;
	height: 6%;
    background: url(../img/rastret_nuevo.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
    margin-top: 50px;
}

.container-form-login
{
    width: 75%;
	height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: #ffffff1a;
    border-radius: 15px;
    border: 1px solid #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 120px;
}
.container-form-title
{
    width: 100%;
	height: 10%;
    font-size: 18px;
    font-family: "Century Gothic", "-apple-system","sans-serif";
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.container-form-input
{
    width: 90%;
	height: 15%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #ffffff;
}
.icon-input
{
    width: 10%;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
}
.input
{
    width: 85%;
    font-size: 13px;
    font-family: "Century Gothic", "-apple-system","sans-serif";
    background: none;
    border: none;
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

.container-form-button
{
    width: 90%;
	height: 15%;
}
.button
{
    width: 100%;
	height: 100%;
    background: rgb(0,91,234);
    background: linear-gradient(90deg, #005bea 0%, #00c6fb 100%);
    border-radius: 10px;
    font-size: 15px;
    font-family: "Century Gothic", "-apple-system", "sans-serif";
    color: #ffffff;
    text-decoration: none;
	outline: none;
	border: none;
}

::placeholder 
{
	color: #ffffff;
}

