*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

* {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
	-webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: #111;
}

::-webkit-scrollbar-track {
  background: #ddd;
}

input,
textarea,
button,
select,
a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

a,
a:link,
a:hover,
a:active,
a:visited {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: inherit
}

body {
    background: #000;
    margin: 0;
}

body,
input,
input::placeholder,
button,
label {
    font-family: 'Rubik', sans-serif;
}

.page {
    width: 370px;
    padding: 20px 15px;
    position: relative;
    text-align: center;
}

#logo {
    width: 260px;
    height: 140px;
    margin-bottom: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(logo_branco_rs.svg);
    background-position: center;
}

.form-status-ok {
    border-radius: 4px;
    background: #59B200;
    font-weight: 400;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 20px;
    padding: 14px 10px;
    width: 100%;
    text-align: center;
}

.form-status {
    border-radius: 4px;
    background: #f44336;
    font-weight: 400;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 20px;
    padding: 14px 10px;
    width: 100%;
    text-align: center;
}

.form-alerta {
	border-radius: 4px;
	border: 1px solid #B90A00;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	margin-bottom: 20px;
	padding: 14px 10px;
	width: 100%;
	text-align: center;
	background-color: rgba(185, 10, 0, 0.01)
}

.input {
    border-radius: 4px;
    border: none;
    background: #FFF;
    border: 1px solid #e6e5e5;
    font-weight: 400;
    font-size: 15px;
    color: #8290a3;
    outline: none;
    padding: 16px 15px;
    margin-bottom: 15px;
    width: 100%;
    transition: 0.3s all ease;
}

#submit_fake, #submit_recuperar_fake, #submit_code_fake, #submit_senha_fake {
	border-radius: 5px;
	background-color: #B90A00;
	color: #ffffff;
	outline: none;
	transition: 0.3s all ease;
	width: 100%;
	margin-top: 10px;
	height: 39px;
	display: none;
}

#submit, #submit_recuperar, #submit_code, #submit_senha {
    border-radius: 5px;
    border: none;
    background-color: #B90A00;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 15px;
    cursor: pointer;
    outline: none;
    transition: 0.3s all ease;
    width: 100%;
    margin-top: 10px;
}

#submit:hover, #submit_recuperar:hover, #submit_code:hover, #submit_senha:hover  {
    opacity: 0.8;
}

#submit:active, #submit_recuperar:active, #submit_code:active, #submit_senha:active {
    opacity: 0.6;
}

.copyright {
    font-weight: 300;
    font-size: 12px;
    color: #FFF;
    margin-top: 10px;
    width: 100%;
    text-align: right
}

.center {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.input-group {
    text-align: left;
    position: relative;
}

label {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 17px;
    opacity: 0.4;
    transition: all 0.3s;
    pointer-events: none;
}

.input:focus~label,
.input.fill~label {
    top: -18px;
    opacity: 0;
    padding: 0 2px;
}

.input:focus,
.input.fill {
    box-shadow: 0 0 0 2px #B90A00;
}

.center::before {
	content: '';
    width: 100%;
    height: 100%;
    background-image: url(background_rs.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
    position: absolute;
}