@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&amp;display=swap');
@import "sidebar.css";
@import "progress.css";
@import "dropdownmenu.css";
.d-none{
  display: none;
}

body {
  background:#F9F8F8;
  font-size: 14px;
  font-family: 'Poppins', sans-serif !important;
}
h1,h2,h3,h4,h5,h6,button,input,textarea{
  font-family: 'Poppins', sans-serif !important;
}
.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
}

p{
  font-size: 14px;
  font-family: 'Poppins', sans-serif !important;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif !important;
}
a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.swal2-styled:focus{
  box-shadow: none !important;
}

.auth-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #b47ab0 0%, #9c5c97 50%, #8a4e86 100%);
}

.auth-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 8px;
}

.auth-logo-wrap::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(2px);
}

.auth-logo {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.85);
  padding: 10px;
  object-fit: contain;
  box-shadow:
    0 14px 28px rgba(34, 16, 36, 0.26),
    0 0 0 6px rgba(255, 255, 255, 0.16);
}

.auth-card {
  background: #4a2c49;
  border: none;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.auth-title {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-align: center;
}

.auth-input-group {
  display: flex;
  align-items: center;
  background: #e9f1ff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
  overflow: hidden;
}

.auth-input-icon {
  width: 44px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6c8fc9;
  color: #ffffff;
  font-size: 16px;
}

.auth-input {
  border: none;
  background: transparent;
  height: 40px;
}

.auth-input:focus {
  box-shadow: none;
}

.auth-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.auth-btn {
  background: #4f7ec7;
  color: #ffffff;
  padding: 6px 28px;
  border-radius: 6px;
  border: none;
  height: 40px;
}

.auth-btn:hover {
  background: #3f6db3;
  color: #ffffff;
}

.auth-footer {
  background: rgba(0, 0, 0, 0.15);
  color: #e6edf7;
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
}

.auth-link {
  color: #c7dbff;
}

.auth-link:hover {
  color: #ffffff;
}

.auth-divider {
  margin: 0 6px;
  color: #d0d7e6;
}

