/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');

html, body {
      overflow-x: hidden;
	  background:#8941a5;
    }

body {
    font-family: Arial, sans-serif;
    background: url('img/halloween-background.jpg');
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover; /* Faz a imagem cobrir toda a tela */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
}
a.white {
	color:#fff;
}

a.white:hover{
	color:orange;
}

h1.white {
	font-family: 'Nosifer', sans-serif;
    color: #360461;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn{
	font-family: 'Nosifer', sans-serif;
}

h2{
	font-family: 'Nosifer', sans-serif;
	color: #360461
}

h5{
	text-shadow: 1px 1px 1px #333;
	background:rgba(0,0,0,0.5);
	padding: 5px;
	border-radius:8px;
}

h6{
	text-shadow: 1px 1px 1px #333;
	background:rgba(0,0,0,0.5);
	padding: 5px;
	border-radius:8px;
}

.rec{
	color:#000;
}


.tamanho {
    width:350px;
    height: auto; /* Mantém a proporção da altura */
}

@media (max-width: 1920px) {
    .tamanho {
        width: 300px;
    }
}

@media (max-width: 1600px) {
    .tamanho {
        width: 200px;
    }
}

@media (max-width: 1240px) {
    .tamanho {
        width: 100px;
    }
}

@media (max-width: 800px) {
    .tamanho {
        width: 60%;
    }
}

@media (max-width: 740px) {
    .tamanho {
        width: 60%;
    }
	h5{z-index:99999;}
}

.color-table{
	background:rgba(255,255,255,0.6);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #8941a5; /* Cor de fundo do footer */
    color: #ffffff; /* Cor do texto */
    text-align: center;
    padding: 10px 0;
}

.btn.btn-primary{
	background-color:#8941a5;
	color:#fff;
	border:1px solid #8941a5;
}

.btn.btn-primary:hover{
	background-color:#00aa9e;
	color:#000;
	border:1px solid #00aa9e;
}

.form-login{
	background:rgba(0,0,0,0.6);
	border-radius:12px;
	padding:20px;
	width:60%;
	color:#fff;
}

.btn.btn-login{
	width:100%;
	background-color:#8941a5;
	color:#fff;
	border:1px solid #8941a5;
}

.btn.btn-login:hover{
	background-color:#00aa9e;
	color:#000;
	border:1px solid #00aa9e;
}