html {
    height:100%;
    color: white;
}
body {
	background-color: #a61b17;
	margin:0;
    height:100%;
     flex-direction: column;
    display: flex;
    align-items: center;
    font-family: 'Mulish';
}

/* Janela de Confirmação */
.warnbox {
	position:fixed;
	display:none;
	right:0;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	z-index:1000;
	background-color:rgba(0,0,0, 0.7);
}
.warnbox .msg p {
	margin-bottom: 20px;
	width: 100%;
}
.warnbox .msg .patchnotes {
	text-align:left;
}
.warnbox .msg .patchnotes ul {
	list-style: outside;
	margin-left:15px;
}
.warnbox .msg .patchnotes li {
	display: list-item;
	margin-bottom:10px;
}
.warnbox .title {
	font-weight:bold;
	font-size:130%;
	color:fff;
	border-top-left-radius:14px;
	border-top-right-radius:14px;
	background-color:#a61b17;
	padding:10px;
    color:#fff;
}
.warnbox .msg {
	padding:10px 50px;
	text-align:center;
	overflow-y: auto;
    color:#000;
    font-weight: 600;
  font-size: 30px;
  margin:50px 0;
}
.warnbox .msg .alteracao {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.warnbox .msg input {
	padding:5px;
	border:2px solid #a61b17;
}
.warnbox .dialog {
	width: 80%;
	z-index:5;
	display:flex;
	flex-direction: column;
	min-width: 25%;
	margin:auto;
	background-color:#fff;
	color:#fff;
	border-radius:15px;
	max-height: 70%;
}
.warnbox .buttons {
    display:flex;
    justify-content: space-evenly;
	font-weight:bold;
	padding:30px;
    flex-shrink: 0;
}
.warnbox .buttons a {
	margin-left:10px;
    margin-top:0;
    color:#fff;
}
.warnbox .buttons a.confirm {
    background-color:#009688;
}
.warnbox .radio-form ul {
	white-space: break-spaces;
	width: auto;
}
.backred {
	background-color:#a61b17 !important;
}
.box {
    gap: 80px;
    padding: 70px;
    display:flex;
    flex-direction: column;
    width:100%;
    box-sizing: border-box;
}
.formulario {
    display:none;
}
.boas-vindas {
    background-image: url('../assets/principal.png');
    width:100%;
    height: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 70px 0;
}
.boas-vindas .header {
    font-size: 40px;
    width: 60%;
}
.boas-vindas .logo-empresa {
    width: 378px;
    height: auto;
}
.boas-vindas .center {
    display:flex;
    flex-direction: column;
}
.boas-vindas .button {
    width:auto;
    margin-top:40px;
    border-radius: 0;
    border: 1px solid #fff;
    color:#fff;
    background-color: transparent;
    padding: 2px 20px;
}
.input-form {
    display:flex;
    flex-direction: column;
    width:100%;
}
.input-form input {
    width:100%;
    font-size: 36px;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color:rgba(255,255,255, 0.7);
}
.input-form .nomecampo, .select-form .nomecampo, .checkbox-form label {
    margin-bottom: 15px;
    font-size: 25px;
}
.select-form {
    display:flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.select-form .nomecampo {
    margin:0;
    margin-right: 20px;
}
.select-form select {
    font-size: 30px;
    min-width: 150px;
    font-weight: 900;
    text-align: center;
    padding: 10px 10px;
}
.select-form.renda select {
    font-size: 22px;
    text-align: left;
}
.checkbox-form {
    text-align: center;
    width: 100%;
}
.checkbox-form label {
    font-size: 18px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.checkbox-form input {
    width: 39px;
    height: 30px;
}
.buttons-form {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
.button {
    font-size: 50px;
    color: #000;
    background-color:rgba(255,255,255,0.7);
    width: 40%;
    text-align: center;
    align-self: center;
    margin-top:-40px;
    font-weight: 300;
    border-radius: 10px;
    cursor: pointer;
}
.cancelar {
    background-color:transparent;
    border: 2px solid #fff;
    color:#fff;
}
footer {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
footer .qrcode {
    display:flex;
    width: 40%;
    align-items: center;
}
footer .qrcode span {
    font-size: 18px;
    margin-left: 15px;
}
footer .logofooter {
    width: 400px;
}