@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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font_f_popping: "Poppins", sans-serif;
  --font_size_14: 14px;
  --font_size_18: 1.125rem;
  --font_size_20: 1.375rem;
  --font_size_23: 1.5rem;
  --font_size_25: 1.5625rem;
  --font_size_30: 1.875rem;
  --font_size_40: 2.5rem;
  --font_size_45: 2.8125rem;
  --main_color: #01BCF1;
  --light_color: #E0F8FF;
  --text_light: #999999;
  --valid:green;
  --invalid: red;
  --font_weight_600: 600;
  --font_weight_700: 700;
}

body {
  font-family: var(--font_f_popping) !important;

  overflow-x: hidden !important;
}

a {
  text-decoration: none !important;
  color: black !important;
}

ul {
  padding: 0 !important;
  margin: 0;
}

li {
  list-style: none;
}


.said-padding{
  padding-inline: 20px !important;
}

/* -------------font-family----------------- */

.font_size_14 {
  font-size: var(--font_size_14);
}

.font_size_18 {
  font-size: var(--font_size_18);
}

.font_size_20 {
  font-size: var(--font_size_20);
}

.font_size_23 {
  font-size: var(--font_size_23);
}

.font_size_25{
  font-size: var(--font_size_25);
}

.font_size_30 {
  font-size: var(--font_size_30);
}

.font_size_40 {
  font-size: var(--font_size_40);
}

.font_size_45 {
  font-size: var(--font_size_45);
}

.font_size_47 {
  font-size: var(--font_size_47) !important;
}

.font_weight_600 {
  font-weight: var(--font_weight_600);
}

.font_weight_700 {
  font-weight: var(--font_weight_700);
}

.blue {
  color: var(--main_color) !important;
}

.yellow {
  color: var(--yellow-color);
}

.light-color {
  color: var(--text_light);
}


.form-control:focus {
  box-shadow: none;
}

.container{
  padding: 0;
}

label {
  padding-bottom: 7px !important;
  padding-top: 6px;
  font-size: 18px;
  text-transform: capitalize;
}

.verfiy{
  color: red;
}

