* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
body {
	background-color: #002a5c;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 100vh;
}
model-viewer {
	margin-top: 10px;
	margin-bottom: 10px;
	width: 100%;
	height: 250px;
 --rotation-per-second: 30;
}
.login-banner {
	color: #fff;
	padding: 12px;
	margin-top: 20px;
	width: 100%;
	max-width: 400px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
.login-banner img {
	width: 100%;
	height: auto;
	display: block;
}
.form-container {
	width: 100%;
	max-width: 400px;
	border-radius: 0.75rem;
	background-color: rgba(17, 24, 39, 1);
	padding: 1.8rem;
	color: rgba(243, 244, 246, 1);
}
.form {
	margin-top: 1.5rem;
}
.input-group {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.input-group label {
	display: block;
	color: rgba(156, 163, 175, 1);
	margin-bottom: 4px;
}
.input-group input {
	width: 100%;
	border-radius: 0.375rem;
	border: 1px solid rgba(55, 65, 81, 1);
	outline: 0;
	background-color: rgba(17, 24, 39, 1);
	padding: 0.75rem 1rem;
	color: rgba(243, 244, 246, 1);
}
.input-group input:focus {
	border-color: #ffb019;
}
.forgot {
	display: flex;
	justify-content: flex-end;
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgba(156, 163, 175, 1);
	margin: 8px 0 14px 0;
}
.forgot a {
	color: rgba(243, 244, 246, 1);
	text-decoration: none;
	font-size: 14px;
}
.forgot a:hover {
	text-decoration: underline #ffb019;
	color: #ffb019;
}
.sign {
	display: block;
	width: 100%;
	background-color: #ffb019;
	padding: 0.75rem;
	text-align: center;
	color: rgba(17, 24, 39, 1);
	border: none;
	border-radius: 25px;
	font-weight: 600;
}
.social-message {
	display: flex;
	align-items: center;
	padding-top: 1rem;
}
.line {
	height: 1px;
	flex: 1 1 0%;
	background-color: rgba(55, 65, 81, 1);
}
.social-message .message {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgba(156, 163, 175, 1);
}
.social-icons {
	margin-top: 15px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	font-size: large;
}
#header {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-news-top {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  background: linear-gradient(90deg, #ffb019, #ffc94a);
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-alert-news {
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease-in;
}

.header-alert-news b {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-alert-news .icon {
  font-size: 1.1rem;
  animation: pulse 1.5s infinite;
}

/* Optional Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

button:hover{
	cursor: pointer;
}