:root {
  --primary: #0d47a1;
  --gradient: linear-gradient(135deg, #2979ff, #0037a5);
  --bg-dark: radial-gradient(circle at 50% 20%, #001737 0%, #001028 80%);
  --border: #ccc;
  --radius: 1rem;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
}

/* ===== Header ===== */
.header {
  background: #fff;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.header img {
  height: 40px;
}

/* ===== Background ===== */
.main-bg {
	flex: 1;
	background: url("../images/bg_clube.png");
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: baseline;
	justify-content: center;
	background-position: center;
	padding: 75px 0;
	min-height: 75vh;
}

/* ===== Card ===== */
.login-card {
  background: #fff;
  width: 100%;
  max-width: 350px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 0rem 2rem 2rem 2rem;
  margin: 0 2%;  
}

.login-card h1 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.8rem;
}

.login-card h2{
	color:#2E3A46;
	text-align:center;
	font-size:22px;
	margin:30px 0 25px;
	font-weight:400;
}

.login-card hr{
	margin:20px 0 25px;
	border:0;
	height:1px;
	background:#979797;
}

.login-card hr.titulo{
	margin:25px 0;border:0;height:3px;
	background: -moz-linear-gradient(320deg, #056FD2 0%, #0635B9 100%);
	background:-webkit-gradient(linear, left top, right bottom, color-stop(0%, #056FD2), color-stop(100%, #0635B9));
	background:-webkit-linear-gradient(320deg, #056FD2 0%, #0635B9 100%);
	background:-o-linear-gradient(320deg, #056FD2 0%, #0635B9 100%);
	background:-ms-linear-gradient(320deg, #056FD2 0%, #0635B9 100%);
	background:linear-gradient(130deg, #056FD2 0%, #0635B9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#056FD2', endColorstr='#0635B9',GradientType=1);}

.img-top {
	display:block;
	margin:0 auto;
	max-width:100%;
};

.login-card hr {
  border: none;
  height: 2px;
  background: #e2e2e2;
  margin-bottom: 1.5rem;
}

/* ===== Form ===== */
.form-group {
  margin-bottom: 1rem;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  font-size: 1rem;
}

input::placeholder {
  color: #aaa;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.form-options a {
  color: var(--primary);
  text-decoration: none;
}

.form-options a:hover {
  text-decoration: underline;
}

.text-danger {
	text-align: left;
	display: block;
	padding: 5px 0 0 5px
}

remember {
	color: #343434;
	font-size: 16px;
	font-weight: 400;
	margin: 5px 0 0;
	text-align: left;
}
/* ===== Buttons ===== */
.btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* ===== Divider ===== */

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.0rem;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #000;
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}


/* ===== Entra Button ===== */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  padding: 0.9rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background: #f5f5f5;
}

/* ===== Alert Box ===== */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 0.4rem;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: #5a4b00;
}

.alert-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* ===== Footer ===== */
.footer {
  background: #fff;
  text-align: center;
  padding: 1rem 0 0.8rem;
  border-top: 1px solid #eee;
}

.footer img {
  height: 38px;
  margin-bottom: 0.3rem;
}

.footer p {
  font-size: 0.85rem;
  color: #555;
}

.login-form {
	padding-bottom: 20px;
}