:root {
  --primary: rgb(8, 0, 51);
  --accent: #e55a24;
  --primary-light: rgba(8, 0, 51, 0.9);
  --accent-light: rgba(229, 90, 36, 0.1);
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --custom-back: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--custom-back);
  color: var(--gray-800);
  line-height: 1.5;
}

/* Fixed header with logo left and text right */
.header {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.header-content img {
  display: block;
  text-align: center;
  height: 40px;
  width: auto;
  margin: 0;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-left: 50px;
}

.logo span {
  color: var(--accent);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 2.5rem auto;
  display: flex;
  gap: 2rem;
}

.form-container {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex: 1;
  overflow: hidden;
}

.form-header {
  background-color: var(--primary);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  border-bottom: 4px solid var(--accent);
}

.form-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.form-body {
  padding: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
  flex: 1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}

input,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 90, 36, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
}

.checkbox-group input {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
}

button {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: #d14d1a;
  transform: translateY(-2px);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.login-container {
  flex: 0 0 350px;
}

.login-container .form-header {
  background-color: var(--accent);
  border-bottom: 4px solid var(--primary);
}

.login-container label {
  color: var(--gray-600);
}

.login-container button {
  background-color: var(--primary);
}

.login-container button:hover {
  background-color: rgba(8, 0, 51, 0.9);
}
.site-footer {
  background-color: rgb(8, 0, 51);
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #e67e00;
}

/* Contact Info Styles */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-list li i {
  margin-right: 10px;
  color: #e67e00;
  min-width: 16px;
}

.contact-list a {
  color: #fff;
  transition: color 0.2s;
}

.contact-list a:hover {
  color: #e67e00;
  text-decoration: underline;
}

/* Social Links Styles */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.facebook:hover {
  background-color: #3b5998;
}

.social-icon.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-icon.youtube:hover {
  background-color: #ff0000;
}

.social-icon i {
  font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .login-container {
    flex: auto;
  }
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 25px;
  }

  .site-footer {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }

  .header-content img {
    margin-bottom: 0.5rem;
  }
}
