/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #177245;
}

body {
  color: #555555;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #0D2B5A;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #0D2B5A;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #177245;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #177245;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #177245;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #177245;
  background: #177245;
}
.btn-theme:hover {
  background: #177245;
  color: #fff;
  border-color: #177245;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #177245;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #177245;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
}
.dashboard-layout .dashboard-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.dashboard-layout .dashboard-overlay.active {
  visibility: visible;
  opacity: 1;
}

.dashboard-sidebar {
  width: 250px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    z-index: 9999;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    z-index: 9999;
  }
}
@media (max-width: 767px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    z-index: 9999;
  }
}
.dashboard-sidebar.active {
  transform: translateX(0);
}
.dashboard-sidebar .close-menu {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  z-index: 10;
  background: #dc3545;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-sidebar .sidebar-logo {
  display: flex;
  align-items: center;
  padding: 20px 18px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}
.dashboard-sidebar .sidebar-logo img {
  max-width: 150px;
}
.dashboard-sidebar .logout {
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
  padding: 10px 18px;
}
.dashboard-sidebar .logout button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  font-size: 16px;
  border: 0;
  background: #fff;
  border-radius: 4px;
  font-weight: 600;
}
.dashboard-sidebar .logout button:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.sidebar-menu {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
}
.sidebar-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.sidebar-menu::-webkit-scrollbar-thumb:active {
  background: #177245;
}
.sidebar-menu .menu-title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: gray;
  margin-bottom: 6px;
}
.sidebar-menu ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.sidebar-menu ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 16px;
  border: 0;
  color: #000;
  background: #fff;
  border-radius: 4px;
  font-weight: 500;
}
.sidebar-menu ul li a:hover {
  color: #177245;
  background: rgba(23, 114, 69, 0.1);
}

.dashboard-main {
  flex: 1;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 250px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard-main {
    padding: 20px;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dashboard-main {
    padding: 20px;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .dashboard-main {
    padding: 20px;
    margin-left: auto;
  }
}

.dashboard-topbar .topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-topbar .open-menu {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  width: 38px;
  height: 38px;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex: none;
}
.dashboard-topbar .topbar-title {
  font-weight: 600;
  font-size: 22px;
  color: #000;
  margin-bottom: 0;
}
.dashboard-topbar .account-info {
  position: relative;
}
.dashboard-topbar .account-info .current {
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 700;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dashboard-topbar .account-info.active .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 45px;
}
.dashboard-topbar .account-info .sub-menu {
  position: absolute;
  top: 60px;
  opacity: 0;
  visibility: hidden;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: max-content;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all all 0.3s linear 0s;
  -o-transition: all all 0.3s linear 0s;
  transition: all all 0.3s linear 0s;
}
.dashboard-topbar .account-info .sub-menu .welcome-info {
  padding: 10px 15px;
}
.dashboard-topbar .account-info .sub-menu .welcome-info h6 {
  font-size: 16px;
  color: #000;
  margin-bottom: 4px;
}
.dashboard-topbar .account-info .sub-menu .welcome-info p {
  font-size: 14px;
  font-weight: 400;
}
.dashboard-topbar .account-info .sub-menu .logout-wrap {
  padding: 4px;
  width: 100%;
}
.dashboard-topbar .account-info .sub-menu .separator {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
}
.dashboard-topbar .account-info .sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 4px;
  width: 100%;
}
.dashboard-topbar .account-info .sub-menu ul li {
  display: block;
}
.dashboard-topbar .account-info .sub-menu ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  font-size: 16px;
  border: 0;
  color: #000;
  background: #fff;
  border-radius: 4px;
  font-weight: 500;
}
.dashboard-topbar .account-info .sub-menu ul li a:hover {
  color: #177245;
  background: rgba(23, 114, 69, 0.1);
}
.dashboard-topbar .account-info .sub-menu .logout {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  font-size: 16px;
  border: 0;
  background: #fff;
  border-radius: 4px;
  font-weight: 500;
}
.dashboard-topbar .account-info .sub-menu .logout:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: #F2F4F7;
}
.login-section .login-card {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .login-section .login-card {
    padding: 30px 20px;
  }
}
.login-section .login-header {
  text-align: center;
  margin-bottom: 35px;
}
.login-section .login-header h2 {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.login-section .login-header p {
  color: #555555;
  margin: 0;
}
.login-section .form-group {
  margin-bottom: 25px;
}
.login-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
}
.login-section .input-group {
  position: relative;
}
.login-section .input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #177245;
  font-size: 18px;
}
.login-section .input-group input {
  width: 100%;
  height: 55px;
  padding: 0 20px 0 50px;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  font-size: 16px;
  color: #101a23;
  transition: 0.3s;
}
.login-section .input-group input:focus {
  outline: none;
  border-color: #177245;
  box-shadow: 0 0 0 4px rgba(23, 114, 69, 0.12);
}
.login-section .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0;
}
@media (max-width: 767px) {
  .login-section .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.login-section .login-options .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  cursor: pointer;
}
.login-section .login-options .remember input {
  accent-color: #177245;
}
.login-section .login-options a {
  color: #177245;
  font-weight: 500;
  text-decoration: none;
}
.login-section .login-options a:hover {
  color: #D4AF37;
}
.login-section .theme-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 8px !important;
  background: #177245;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.login-section .theme-btn:hover {
  background: rgb(16.1503649635, 80.0496350365, 48.4510948905);
}
.login-section .login-footer {
  margin-top: 30px;
  text-align: center;
  color: #555555;
}
.login-section .login-footer a {
  color: #177245;
  font-weight: 600;
  text-decoration: none;
}
.login-section .login-footer a:hover {
  color: #D4AF37;
}

.forgot-password-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: #F2F4F7;
}
.forgot-password-section .forgot-password-card {
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .forgot-password-section .forgot-password-card {
    padding: 30px 20px;
  }
}
.forgot-password-section .card-header {
  text-align: center;
  margin-bottom: 35px;
}
.forgot-password-section .card-header .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(23, 114, 69, 0.1);
  color: #177245;
  display: flex;
  align-items: center;
  justify-content: center;
}
.forgot-password-section .card-header .icon i {
  font-size: 34px;
}
.forgot-password-section .card-header h2 {
  font-size: 34px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}
.forgot-password-section .card-header p {
  color: #555555;
  line-height: 1.7;
  margin: 0;
}
.forgot-password-section .form-group {
  margin-bottom: 30px;
}
.forgot-password-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
}
.forgot-password-section .form-group .input-group {
  position: relative;
}
.forgot-password-section .form-group .input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #177245;
  font-size: 18px;
}
.forgot-password-section .form-group .input-group input {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  padding: 0 20px 0 50px;
  font-size: 16px;
  transition: 0.3s;
}
.forgot-password-section .form-group .input-group input:focus {
  outline: none;
  border-color: #177245;
  box-shadow: 0 0 0 4px rgba(23, 114, 69, 0.12);
}
.forgot-password-section .theme-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px !important;
  background: #177245;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.forgot-password-section .theme-btn:hover {
  background: rgb(16.1503649635, 80.0496350365, 48.4510948905);
}
.forgot-password-section .card-footer {
  margin-top: 30px;
  text-align: center;
}
.forgot-password-section .card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #177245;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.forgot-password-section .card-footer a i {
  font-size: 18px;
}
.forgot-password-section .card-footer a:hover {
  color: #D4AF37;
}

.register-section {
  padding: 100px 0;
  background: #F2F4F7;
}
.register-section .register-card {
  background: #fff;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .register-section .register-card {
    padding: 25px;
  }
}
.register-section .card-header {
  text-align: center;
  margin-bottom: 35px;
}
.register-section .card-header h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}
.register-section .card-header p {
  color: #555555;
  margin: 0;
}
.register-section .form-group {
  margin-bottom: 25px;
}
.register-section .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}
.register-section .input-group {
  position: relative;
}
.register-section .input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #177245;
  font-size: 18px;
}
.register-section .input-group input {
  width: 100%;
  height: 55px;
  padding: 0 18px 0 50px;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  font-size: 16px;
  transition: 0.3s;
}
.register-section .input-group input:focus {
  outline: none;
  border-color: #177245;
  box-shadow: 0 0 0 3px rgba(23, 114, 69, 0.12);
}
.register-section .upload-box {
  height: 150px;
  border: 2px dashed #ddd;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.register-section .upload-box:hover {
  border-color: #177245;
  background: rgba(23, 114, 69, 0.05);
}
.register-section .upload-box i {
  font-size: 42px;
  color: #177245;
  margin-bottom: 10px;
}
.register-section .upload-box span {
  color: #555555;
  font-weight: 500;
}
.register-section .theme-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 8px !important;
  background: #177245;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}
.register-section .theme-btn:hover {
  background: rgb(16.1503649635, 80.0496350365, 48.4510948905);
}
.register-section .card-footer {
  text-align: center;
  margin-top: 30px;
  color: #555555;
}
.register-section .card-footer a {
  color: #177245;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
}
.register-section .card-footer a:hover {
  color: #D4AF37;
}
@media (max-width: 767px) {
  .register-section .card-header h2 {
    font-size: 30px;
  }
  .register-section .upload-box {
    height: 120px;
  }
}

.dashboard-overview .dashboard-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.dashboard-overview .dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.dashboard-overview .card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.dashboard-overview .card-top span {
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
}
.dashboard-overview .card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.dashboard-overview .success .card-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.dashboard-overview .danger .card-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.dashboard-overview .warning .card-icon {
  background: linear-gradient(135deg, #fb923c, #f97316);
}
.dashboard-overview .yellow .card-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.dashboard-overview .blue .card-icon {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}
.dashboard-overview .purple .card-icon {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
.dashboard-overview h3 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 700;
  color: #111827;
}
.dashboard-overview .card-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.dashboard-overview .card-footer strong {
  font-weight: 700;
}
.dashboard-overview .card-footer span {
  color: inherit;
  opacity: 0.9;
}
.dashboard-overview .card-footer i {
  font-size: 15px;
}
.dashboard-overview .card-footer.up {
  background: #ecfdf3;
  color: #16a34a;
}
.dashboard-overview .card-footer.down {
  background: #fef2f2;
  color: #dc2626;
}
.dashboard-overview .mini h3 {
  margin: 0;
  font-size: 38px;
}
.dashboard-overview .mini .card-top {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .dashboard-overview .dashboard-card {
    padding: 22px;
  }
  .dashboard-overview h3 {
    font-size: 34px;
  }
  .dashboard-overview .card-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .dashboard-overview .page-header h2 {
    font-size: 28px;
  }
  .dashboard-overview .dashboard-card {
    padding: 20px;
  }
  .dashboard-overview h3 {
    font-size: 30px;
  }
  .dashboard-overview .card-top {
    gap: 12px;
  }
  .dashboard-overview .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .dashboard-overview .card-footer {
    width: 100%;
    justify-content: center;
  }
}

.profile-settings .profile-wrapper {
  max-width: 100%;
}
.profile-settings .settings-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .profile-settings .settings-card {
    padding: 25px;
  }
}
.profile-settings .profile-card {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .profile-settings .profile-card {
    flex-direction: column;
    text-align: center;
  }
}
.profile-settings .profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f3f3f3;
}
.profile-settings .profile-card h3 {
  font-size: 28px;
  color: #000;
  margin-bottom: 5px;
}
.profile-settings .profile-card span {
  display: block;
  color: #177245;
  margin-bottom: 5px;
}
.profile-settings .profile-card p {
  color: #777;
  margin-bottom: 20px;
}
.profile-settings .profile-card .upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #177245;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.profile-settings .profile-card .upload-btn:hover {
  background: rgb(16.1503649635, 80.0496350365, 48.4510948905);
}
.profile-settings .card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.profile-settings .card-title i {
  font-size: 22px;
  color: #177245;
}
.profile-settings .card-title h4 {
  font-size: 22px;
  color: #000;
  margin: 0;
}
.profile-settings .form-group {
  margin-bottom: 25px;
}
.profile-settings .form-group label {
  display: block;
  font-size: 14px;
  color: #777;
  font-weight: 500;
  margin-bottom: 8px;
}
.profile-settings .form-group input {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 18px;
  transition: 0.3s;
}
.profile-settings .form-group input:focus {
  outline: none;
  border-color: #177245;
  box-shadow: 0 0 0 4px rgba(23, 114, 69, 0.08);
}
.profile-settings .settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
@media (max-width: 767px) {
  .profile-settings .settings-footer {
    flex-direction: column;
  }
}
.profile-settings .theme-btn,
.profile-settings .cancel-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}
.profile-settings .theme-btn {
  background: #177245;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-settings .theme-btn:hover {
  background: rgb(16.1503649635, 80.0496350365, 48.4510948905);
}
.profile-settings .cancel-btn {
  background: #f6f6f6;
  color: #555;
}
.profile-settings .cancel-btn:hover {
  background: #e9e9e9;
}

/*# sourceMappingURL=backend.css.map */
