
:root {
    --primary: #e67e22;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #34495e;
    --success: #27ae60;
    --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  body {
    width: 100dvw;
    min-height: calc(100vh - 300px);
    overflow-x: hidden;
  }
/* Login Page Specific Styles */
.login-page {
  background-color: var(--lightest-bg);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  margin-top: 120px;
}

.login-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  min-height: 600px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.login-image {
  flex: 1;
  background-image: url("../assets/shoe1.png");
  background-size: contain;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.login-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.7),
    rgba(0, 0, 0, 0.7)
  );
}

.login-form-container {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-wrapper {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}

.login-tabs {
  display: flex;
  border-bottom: 1px solid var(--lightest-bg);
  margin-bottom: 10px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-lighter);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  color: var(--primary) !important;
}
#activeB {
  color: var(--primary) !important;
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tab-content {
  display: block;
}

.tab-content.hidden {
  display: none;
}

.tab-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 5px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-lighter);
}

.input-with-icon input {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-small);
  font-size: 16px;
  transition: border 0.3s ease;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

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

.forgot-password:hover {
  text-decoration: underline;
}
/* Responsive styles */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    min-height: auto;
  }

  .login-image {
    height: 200px;
    min-height: auto;
  }

  .login-form-container {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
