/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FAD59A 0%, #FAD59A 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .login-card {
            background: white;
            text-align: center;
            border-radius: 12px;
            width: 100%;
            padding: 40px;
            transition: all 0.3s ease;
        }
        
        .login-card:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-header h2 {
            color: #4B352A;
            font-size: 35px;
            font-weight: 600;
            margin-bottom: 10px;
            font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  
  
        }
        
        .login-header p {
            color: #666;
            font-size: 14px;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-size: 14px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #f9f9f9;
        }
        
        .form-group input:focus {
            border-color: #78544ae7;
            background-color: white;
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
        
        .login-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #4B352A, #4B352A);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
         .login-btn a{
            color: #e0e0e0;
         }
        
        .login-btn:hover {
            background: linear-gradient(to right, #8a7552, #8a7552);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .login-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
        }
        
        .login-footer a {
            color: #4B352A;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .login-footer a:hover {
            color: #8a7552;
            text-decoration: underline;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .remember-me input {
            margin-left: 10px;
        }
        
        .remember-me label {
            margin-bottom: 0;
            color: #666;
            cursor: pointer;
        } */

:root {
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --white: #fff;
  --light-bg: #faf4f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
}

body {
  background-color: var(--light-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-container {
  display: flex;
  width: 900px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-image {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    no-repeat center;
  background-size: cover;
}

.auth-form {
  flex: 1;
  padding: 50px;
}

.form-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
}

.input-group input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.btn {
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--primary-color);
}
.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, var(--primary-color), #5a2d3a);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.login-btn a {
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.login-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.form-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.form-switcher button {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.form-switcher button.active {
  color: var(--secondary-color);
  font-weight: bold;
}

.form-switcher button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    width: 90%;
  }

  .auth-image {
    height: 200px;
  }
}
