/*!
	* @name PLATAFORMA GRIFOS (Registo INPI BR 51 2016 001520 9)
	* @author Rafael Barros Dutra
	* @version 2.0
	* @copyright RD 2025
	* @date 2025-08-19
	* @date v1.0 - 2022-06-28
	* login.css - Página de estilos css do index.php
*/
 


body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita scroll lateral */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f5f5f7;

  /* Centralização */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centro vertical */
  align-items: center;     /* centro horizontal */

}

.round2 {
	border-radius: 100%;
	overflow: hidden;
	height:100px;
	width:100px;
	background: white;
	float: left;
	
}

.login-box {
  background: #fff;
  padding: 2rem;
  border-radius: 34px;
  width: 500px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15),
              0 8px 16px rgba(0,0,0,0.1);
}

.login-box h2 {
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #333;
}

/* Grupo do input */
.input-group {
  position: relative;
  border: 1px solid #ccc;
  margin: 0;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group.top {
  border-radius: 12px 12px 0 0; /* arredondado em cima */
}

.input-group.bottom {
  border-radius: 0 0 12px 12px; /* arredondado embaixo */
  border-top: none; /* junta com o de cima */
}

/* Input */
.input-group input {
  width: 100%;
  padding: 20px 12px 8px; /* espaço para label subir */
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

/* Label flutuante */
.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.25s ease all;
}

/* Efeito focus ou quando o input não está vazio */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 0.75rem;
  color: #007aff;
}

/* Efeito focus na caixa */
.input-group:focus-within {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.2);
}

/* Botão */
button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  background: rgb(86,89,98);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: rgb(100,52,29);
}

/* Rodapé fixo */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;           /* garante que não ultrapasse */
  width: 100%;
  box-sizing: border-box; /* inclui padding na largura */
  text-align: center;
  font-size: 12px;
  color: #6e6e73;
  padding: 10px 0;
  background: transparent;
  overflow-x: hidden; /* evita scroll lateral */
}