/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* BODY */

body{

background:linear-gradient(135deg,#000,#111,#1a1a1a);
color:white;
min-height:100vh;
display:flex;
flex-direction:column;

}

/* TOPO */

/* TOPO PROFISSIONAL */
.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #c9a646;
}

/* ESQUERDA */
.topo-esq {
    display: flex;
    align-items: center;
}

/* CENTRO */
.topo-centro {
    text-align: center;
    flex: 1;
}

/* DIREITA */
.topo-dir {
    display: flex;
    gap: 10px;
}

.logo {
    width: 165px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}

/* BOTÃO TOPO */
.btn-topo {
    background: linear-gradient(90deg,#c9a646,#d4af37);
    padding: 10px 12px;
    border-radius: 6px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-topo:hover {
    transform: translateY(-2px);
}

/* BOTÃO SAIR */
.btn-sair {
    background: linear-gradient(90deg,#7a0000,#cc0000);
    color: white;
}

/* CONTAINER */

.container {
    max-width: 450px;
    margin: 40px auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #c9a646;
    box-shadow: 0 0 25px rgba(201,166,70,0.2);
}

/* MELHOR ESPAÇO */
label {
    margin-top: 12px;
}

/* TITULOS */

h2, h3{

text-align:center;
margin-bottom:20px;

}

/* LABEL */

label{

display:block;
margin-top:15px;
color:#ccc;
font-size:14px;

}

/* INPUT / TEXTAREA */

input, textarea{

width:100%;
padding:12px;
margin-top:5px;
background:#000;
border:1px solid #333;
color:white;
border-radius:6px;
transition:0.3s;

}

input:focus, textarea:focus{

outline:none;
border:1px solid #c9a646;
box-shadow:0 0 10px rgba(201,166,70,0.4);

}

/* BOTﾃグ */

button{

width:100%;
padding:12px;
margin-top:12px;
background:linear-gradient(90deg,#c9a646,#d4af37);
border:none;
border-radius:6px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
color:black;

}

button:hover{

background:linear-gradient(90deg,#d4af37,#ffd700);
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(201,166,70,0.4);

}

/* RESPONSIVO */

@media(max-width:600px){

.container{

margin:20px;

}

}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* CAMPO OBSERVAÇÃO */
textarea{
    width:100%;
    min-height:95px;
    padding:12px;
    margin-top:5px;
    background:#000;
    border:1px solid #333;
    color:white;
    border-radius:6px;
    transition:0.3s;
    resize:vertical;
}
