body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  border-color: #ffffff;
  border-radius: 2px;
}
  
header {
  background: transparent;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e0e0e0;
}

  
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  padding: 2px;
  
}

nav a {
  margin: 0 8px;
  padding: 6px 14px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  margin-right: 10px;
 text-decoration: none;   
}
.header-phone:hover {
  color: #e62222;
  text-decoration: underline;
}

.login-btn {
  background: #333;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-decoration: none;
}
.login-btn:hover {
  background: #555;
  color: #fff;
}



/* body */
  form {
    max-width: 400px;
    margin: 30px auto;
    background: #f7f7f7;
    padding: 24px 28px;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  form input[type="text"],
  form input[type="password"] {
    width: 100%;
  padding: 10px 12px;
  border: 1px solid #000000;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 0;
  background: #fff;
  box-sizing: border-box;
  }
  input::placeholder,
  textarea::placeholder {
    color: #666;
    opacity: 1;
  }
  
  form textarea {
    min-height: 80px;
    resize: vertical;
  }
  
  
  form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  form button:hover {
    background: #555;
  }

  form h2 {
    text-align: center;
  }
  
.connexion-form .forgot-btn {
  background: transparent;
  color: #444;
  border: none;
  font-size: 0.85em;
  margin: 0 auto 0 auto;
  margin-top: 4px;
  display: block;
  padding: 3px 12px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s;
  min-width: unset;
  min-height: unset;
  line-height: 1.2;
}
.connexion-form .forgot-btn:hover {
  background: #ccc;
  color: #222;
}






footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0 20px 0;
  width: 100%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-logo {
  min-width: 160px;
}
.footer-logo div {
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links > div {
  min-width: 120px;
}
.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px !important;
}
.footer-links a, .footer-title {
  display: block;
  
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "FontAwesome", Arial, sans-serif;
  font-size: 22px;
}
.footer-social a {
  color: #222;
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
}

.footer-contact-link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: #e62222;
  text-decoration: underline;
}
