:root {
	--primary-red: #E31E24;
	--secondary-gray: #58595B;
	--dark-gray: #333333;
	--light-gray: #f5f5f5;
	--green-whatsapp: #25D366;
}
.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: white;
	text-decoration: none;
	font-size: 20px;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 20px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	min-height: 100vh;
	background-color: var(--light-gray);
}

.top-info {
	background-color: white;
	text-align: right;
	padding: 8px 40px;
	font-size: 14px;
}

.top-info a {
	/* 				color: var(--primary-red); */
	color: #646567;
	text-decoration: none;
}

.top-info .hashtag {
	color: var(--primary-red);
	font-weight: bold;
	margin: 0 10px;
}

.top-info .phone {
	color: var(--dark-gray);
	margin-right: 15px;
}

.whatsapp-number {
	color: var(--secondary-gray);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.navbar {
	background-color: white;
/* 	padding: 15px 40px; */
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 50px;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: var(--secondary-gray);
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary-red);
}

.main-content {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 180px);
	padding: 40px 20px;
}

.container {
	width: 100%;
	max-width: 400px;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1 {
	color: var(--primary-red);
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 500;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	color: var(--secondary-gray);
	font-size: 14px;
}

input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s;
}

input:focus {
	outline: none;
	border-color: var(--primary-red);
}

button {
	width: 100%;
	padding: 14px;
	background-color: var(--primary-red);
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	text-transform: uppercase;
	font-weight: 500;
}

button:hover {
	background-color: #c91920;
}

.forgot-password {
	text-align: center;
	margin-top: 20px;
}

.forgot-password a {
	color: var(--primary-red);
	text-decoration: none;
	font-size: 14px;
}

.forgot-password a:hover {
	text-decoration: underline;
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: var(--green-whatsapp);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transition: transform 0.3s;
}

.whatsapp-float:hover {
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.top-info {
		text-align: center;
		padding: 8px 20px;
	}

	.navbar {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.container {
		padding: 20px;
	}
}