/* style.css */

/* 🔹 Reset and basic setup */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 🔹 Topbar */
.topbar {
  background-color: #eaf3ff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #003366;
}
.topbar a {
  margin-right: 15px;
  color: #003366;
  transition: color 0.3s;
}
.topbar a:hover {
  color: #0056b3;
}
.social-icons a {
  margin-left: 10px;
  font-size: 16px;
}

/* 🔹 Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9fbff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}
.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* 🔹 Navigation */
.navbar a {
  margin-left: 20px;
  font-weight: 500;
  color: #005fa3;
}
.navbar a:hover {
  color: #003366;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f3f4f6;
}

/* Login Section Wrapper */
.login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 2rem;
}
.company-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.subtitle {
  color: #6b7280;
  margin-bottom: 1rem;
}
.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Form Container */
.form-container {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.form-title {
  text-align: center;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #374151;
}
.form-group input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus {
  border-color: #3b82f6;
}

/* Password Show/Hide */
.password-wrapper {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.1rem;
  color: #6b7280;
}

/* Remember Me & Forgot Password */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.form-options a {
  color: #3b82f6;
  text-decoration: none;
}
.form-options a:hover {
  text-decoration: underline;
}

/* Login Button */
.login-button {
  width: 100%;
  background-color: #2563eb;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.login-button:hover {
  background-color: #1e40af;
}

/* Social Login */
.social-login {
  margin-top: 1.5rem;
  text-align: center;
}
.social-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.social-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.social-btn.google {
  background-color: #db4437;
}
.social-btn.google:hover {
  background-color: #c33d2f;
}
.social-btn.facebook {
  background-color: #4267B2;
}
.social-btn.facebook:hover {
  background-color: #37589c;
}

/* Responsive */
@media (max-width: 640px) {
  .company-name {
    font-size: 1.5rem;
  }
  .hero-image {
    max-width: 100%;
  }
  .form-container {
    padding: 1.5rem;
  }
}



/* Footer Styles */
.footer {
  background-color: #2c2c54;
  color: #421919;
  padding: 40px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info, .footer-social, .footer-links {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-info h3, .footer-social h4, .footer-links h4 {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-info p, .footer-info a, .footer-links a {
  font-size: 16px;
  color: #d1d1d1;
  text-decoration: none;
}

.footer-info a:hover, .footer-links a:hover {
  color: #00bfff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #00bfff;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaaaaa;
  border-top: 1px solid #444;
  margin-top: 30px;
}


/* 🔹 Footer */
.footer {
  background-color: #f9fbff;
  padding: 10px 05px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.footer .social-icons a {
  margin: 0 10px;
  font-size: 18px;
  color: #003366;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #0077cc;
}
.footer p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.footer a {
  color: #0077cc;
}
.footer a:hover {
  text-decoration: underline;
}
