@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  /* COLOR */
  --primary-color: #feb902;
  --secondary-color: #09a4ef;
  --title-color: #101828;
  --description-color: #718096;
  --white-color: #ffffff;
  --gray-200: #e4e7ec;
  --border-color: #e2e8f0;
  /* TYPOGRAPHY */
  --body-font: "Inter", sans-serif;
  --title-font: "Manrope", sans-serif;
  /* Font Size */
  --h1-font-size: 32px;
  --h2-font-size: 24px;
  --h3-font-size: 20px;
  --normal-font-size: 16px;
  --small-font-size: 14px;
  /* Font Weight */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-ex-bold: 800;
}

/*========== BASE ==========*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--title-color);
  background: #fafafa;
}

h1,
h2,
h3,
ul {
  margin: 0;
}

h1 {
  font-size: var(--h1-font-size);
  font-family: var(--body-font);
  color: var(--title-color);
  font-weight: var(--font-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-family: var(--body-font);
  color: var(--title-color);
  font-weight: var(--font-bold);
}

h3 {
  font-size: var(--h3-font-size);
  font-family: var(--body-font);
  color: var(--title-color);
  font-weight: var(--font-bold);
}

p {
  font-size: var(--normal-font-size);
  color: var(--description-color);
  margin: 0;
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
  color: var(--description-color);
}

hr {
  border: 1px solid var(--border-color);
}

img {
  max-width: 100%;
  height: auto;
}

.icons {
  font-size: 24px;
  color: var(--description-color);
}

.button {
  border: none !important;
}

textarea,
input {
  padding: 16px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
}

.form-control {
  height: 50px;
}

.form-control::placeholder {
  font-size: var(--normal-font-size);
  color: #a0aec0;
}

input[type="checkbox"] {
  width: 16px;
}

label {
  font-size: 14px;
  font-weight: var(--font-medium);
}

.card {
  border: none;
}

/* Common css */
.form-select:focus {
  border: 1px solid var(--secondary-color);
  outline: none;
  box-shadow: none;
}

/* Common css */

.container-fluid {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb_list li {
  list-style: none;
  cursor: pointer;
  line-height: normal;
}

.breadcrumb_list li.active {
  padding: 4px 8px;
  background: #e8edff;
  color: var(--secondary-color);
  border-radius: 6px;
}

.breadcrumb_list .icons {
  font-size: 24px;
}

.btn {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  cursor: pointer;
}

.btn_s {
  padding: 12px 25px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn_b {
  background: #101828;
  padding: 12px 16px;
  color: var(--white-color);
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn_b .icons {
  color: var(--white-color);
}

.btn_s .icons {
  color: var(--primary-color);
}

.btn_b:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.btn_s:hover,
.btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  border: 1px solid transparent !important;
}

.btn_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn_area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: auto;
  height: 35px;
}

.section_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.section_title .text_area p {
  margin-top: 10px;
}

.search_bar {
  margin-bottom: 18px;
}

.search_bar .ant-input-prefix {
  margin-top: 3px;
}

.search_bar span.ant-input-affix-wrapper {
  background: #edf2f7;
}

.search_bar span.ant-input-affix-wrapper input {
  background: #edf2f7;
  padding-left: 5px;
}

.search_bar .icons {
  color: #718096;
}

.body_content {
  margin-left: 0 !important;
  margin-right: 10px !important;
}

/* +++++++++++++
All pages css start
++++++++++++++++ */

/* =============== LogIn Page CSS ================= */

.logIn_page {
  padding-right: 0;
  width: 100%;
  height: 100vh !important;
}

.logIn_page .row {
  height: 100%;
}

.logIn_page .login_form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logIn_page .login_form .login_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logIn_page .form_area {
  max-width: 500px;
  text-align: center;
}

.logIn_page .form_area h1 {
  font-size: 40px;
}

.logIn_page .form_area .desc {
  font-size: 18px;
  color: #131b28;
}

.logIn_page .form_area .remember_me {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logIn_page .form_area .remember_me p {
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.logIn_page .form_area .fuP {
  font-weight: var(--font-medium);
  color: var(--secondary-color);
}

.logIn_page .form_area .btn {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.logIn_page .form_area .forget_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
}

.logIn_page .form_area .redio_input {
  width: auto;
}

.custom-selector {
  max-width: 200px;
  border: 1px solid #ccc;
  position: relative;
  border-radius: 12px;
}

.custom-selector .selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
}

.custom-selector .selector-header span{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.custom-selector .options-list {
  list-style: none;
  margin-top: 10px;
  padding: 0;
  position: absolute;
  width: 100%;
  border: 1px solid var(--border-color);
  display: none;
  background-color: var(--white-color);
  transition: all 0.5s ease-in-out;
  border-radius: 12px;
}

.options-list-visible {
  display: block !important;
}

.custom-selector .option {
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-selector .option:hover {
  background-color: #f0f0f0;
}

.custom-selector .icons{
  transition: all 0.5s ease-in-out;
}

.custom-selector .rotate-icon{
  rotate: 180deg;
  transition: all 0.5s ease-in-out;
}

#password-toggle{
  color: var(--title-color)
}

.logIn_page .logIn_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.logIn_page .login_img {
  width: 100%;
  height: 100%;
  background: #edf2f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logIn_page .login_img img {
  margin: auto;
}

.logIn_page .input_item{
  margin-top: 24px;
  display: flex;
  align-items: center;
  
}

.logIn_page .input_item.password{
  position: relative;
}

.logIn_page .input_item.password input{
  position: relative;
  padding-right: 50px;
}

.logIn_page .input_item.password .icons{
  position: absolute;
  right: 16px;
  color: var(--description-color) !important
}


.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: .875em;
  color: #dc3545;
}

/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */
/* =============== LogIn Page CSS ================= */