* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #0f172a; /* Deep Navy Background */
  margin: 0;
  overflow-x: hidden;
  color: white;
}

.bgdark {
  background-color: #0f172a;
}
.logo-nav {
  height: 70px;
  width: auto;
}

.user-profile-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.user-profile-circle:hover {
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.hover-cyan:hover {
  color: #22d3ee !important;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}
.custom-input::placeholder {
  color: #6f7a8d !important;
  opacity: 0.7;
}

.postCard {
  background-color: #1e293b;
  border-radius: 12px;
  transition: transform 0.2s ease-in-out;
}

.postCard:hover {
  transform: translateY(-3px);
}

.user-profile-circle {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #22d3ee, #06b6d4);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.text-cyan {
  color: #22d3ee;
}

.btn-cyan {
  background-color: #22d3ee;
  color: #0f172a;
  border: none;
}

.custom-input {
  background-color: #111827 !important;
  border: 1px solid #374151 !important;
  color: white !important;
}

.custom-input:focus {
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.branding-section {
  background: linear-gradient(135deg, #121b2d 0%, #0f172a 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.description-text {
  color: #94a3b8;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.6;
}

.login-form-section {
  background-color: #0f172a;
}
.logbtn {
  background-color: transparent;
  color: #0f172a;
  border: 1px solid #22d3ee;
  border-radius: 8px;
  transition: 0.3s ease;
}
.logbtn:hover {
  background-color: #06b6d4;
  transform: translateY(-2px);
  color: #0f172a !important;
}

.custom-input {
  background-color: #1e293b !important;
  border: 1px solid #334155 !important;
  color: white !important;
  padding: 12px 15px;
  border-radius: 8px;
}

.custom-input:focus {
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
  border-color: #22d3ee !important;
}

.btn-cyan {
  background-color: #22d3ee !important;
  color: #0f172a !important;
  border: none !important;
  border-radius: 8px !important;
  transition: 0.3s ease;
}

.btn-cyan:hover {
  background-color: #06b6d4;
  transform: translateY(-2px);
}

.btn-social {
  border-radius: 8px;
  font-weight: 500;
}
.logo {
  width: 70px;
}

.custom-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.form-select.custom-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.color {
  color: #6f7a8d;
}
.swal2-confirm {
  background-color: #22d3ee !important;
  color: #0f172a !important;
}
.imgContainer img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}
.imgContainer img:hover {
  transform: translateY(-2px);
}
.selected {
  border: 2px solid #22d3ee !important;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
}

.vibenet-title {
  color: #22d3ee !important;
}

/* Mobile Responsiveness Adjustment */
@media (max-width: 991px) {
  .login-form-section {
    padding: 40px 20px;
  }
  .card {
    width: 100% !important;
  }
  .login-form-section {
    padding-bottom: 50px !important;
  }
}
