* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, rgb(150, 235, 235), white); 
  background-attachment: fixed;  
  background-size: cover;
  padding-top: 80px;
}

.shadow-sm {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 45px;
}


.login-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.login-btn:hover {
  background: #084298;
}


.nav-link {
  font-weight: 500;
  transition: 0.2s;
}

.nav-link:hover {
  color: #0d6efd;
}


.dropdown-custom {
  position: relative;
}


.dropdown-custom .dropdown-list {
  position: absolute;
  top: 55%;
  left: 0;
  /* background: #ffffff; */
  min-width: 100px;
  padding: 10px 0;
  border-radius: 10px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  list-style: none;
  z-index: 999;
}

.dropdown-custom:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-custom .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}



.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -280px; 
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.4s ease;
}


.mobile-slide-menu.active {
  right: 0;
}


.slide-header {
  border-bottom: 1px solid #ddd;
}


@media (min-width: 992px) {
  .mobile-slide-menu {
    display: none;
  }
}


.login-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.login-btn:hover {
  background: #084298;
}



/* General Page Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f7ff;
}

/* Container */
.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Left Image */
.auth-image {
  flex: 1;
  background: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form */
.auth-form {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f5f7ff;
}

.form-box {
  width: 100%;
}

/* Tabs */
.form-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.form-tabs .tab {
  flex: 1;
  padding: 12px 0;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.form-tabs .tab.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
}

/* Forms */
.form-content {
  display: none;
  flex-direction: column;
}

.form-content.active {
  display: flex;
}

.form-content h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #1a2a49;
  text-align: center;
}

.form-content input {
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  width: 100%;
}

.btn-auth {
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-auth:hover {
  background: #084298;
}

.form-content p {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-top: 15px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .auth-container {
    flex-direction: column;
  }
  .auth-image {
    height: 250px;
  }
  .auth-form {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .form-content h2 {
    font-size: 24px;
  }
  .form-content input {
    font-size: 14px;
    padding: 10px;
  }
  .btn-auth {
    font-size: 15px;
    padding: 10px;
  }
}
