:root {
  --clr-primary-400: 36% 87% 40%;
  --clr-secondary-400: 128 94% 70%;
  --clr-secondary-500: 82% 94% 62%;
  --clr-neutral-100: 0 0% 100%;
  --clr-neutral-200: 255 100% 100%;
  --clr-neutral-300: 34% 97% 26%;

  --ff-primary: "Verdana", sans-serif;

  --fw-400: 500;
  --fw-700: 600;

  --fs-300: 0.6875rem;
  --fs-400: 0.8125rem;
  --fs-500: 1.25rem;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  place-content: center;
  min-height: 100vh;

  font-family: var(--ff-primary);
  font-weight: var(--fw-400);

  background-color: hsl(var(--clr-neutral-200));
}

h1,
h2,
h3 {
  font-weight: var(--fw-700);
}

/* utilities */
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.bg-primary-400 {
  background: hsl(var(--clr-primary-400));
}
.bg-secondary-400 {
  background: hsl(var(--clr-secondary-400));
}
.bg-secondary-500 {
  background: hsl(var(--clr-secondary-500));
}

.bg-neutral-100 {
  background: hsl(var(--clr-neutral-100));
}

.text-neutral-100 {
  color: hsl(var(--clr-neutral-100));
}
.text-secondary-400 {
  color: hsl(var(--clr-secondary-400));
}
.border-primary-400 {
  border: 2px solid #a775f1;
}

/* components */
.testimonial-grid {
  padding-block: 2rem;
  width: min(95%, 70rem);
  margin-inline: auto;
}

.testimonial {
  font-size: var(--fs-400);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
}

.testimonial.quote {
  background-image: url("./images/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top right 10%;
}

.testimonial img {
  width: 1.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.testimonial .name {
  font-size: var(--fs-400);
  font-weight: var(--fw-400);
  line-height: 1;
}

.testimonial .position {
  font-size: var(--fs-300);
  opacity: 0.5;
}

.testimonial > p:first-of-type {
  font-size: var(--fs-500);
  line-height: 1.2;
}

.testimonial > p:last-of-type {
  opacity: 0.7;
}


.login_page {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #fff;  
}
.login {
  width: 100%;
  height: auto;
}
.login_logo {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
  align-items: center;
  margin-top: 2rem;
}
.logo_img {
  display: block;
  width: 5rem;
  height: auto;
}
.logo_name {
  height: 100px;
}
.validate-input {
  position: relative;
  outline: none;
  border: none;
}
.wrap-input100 {
  width: 80%;
  position: relative;
  outline: none;
  border: none;
  border-bottom: 2px solid #d9d9d9;
}
.m-b-35 {
  margin-bottom: 35px;
}
.m-t-50 {
  margin-top: 50px;
}
.input100 {
  font-family: var(--ff-primary);
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
  outline: none;
  border: none;
}
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #57b846;
}
.focus-input100::after {
  font-family: var(--ff-primary);
  font-size: 18px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: -20px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.input100:focus + .focus-input100::after {
  top: -20px;
  font-size: 15px;
}
.input100:focus + .focus-input100::before {
  width: 100%;
}
.has-val.input100 + .focus-input100::after {
  top: -20px;
  font-size: 15px;
}
.has-val.input100 + .focus-input100::before {
  width: 100%;
}
.login100-form-btn {
  font-family: var(--ff-primary);
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 2rem;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 80%;
  height: 50px;
  background-color: rgba(128, 180, 10, 1);
  border-radius: 25px;

  box-shadow: 0 10px 30px 0px rgba(42, 100, 23, 1);
  -moz-box-shadow: 0 10px 30px 0px rgba(42, 100, 23, 1);
  -webkit-box-shadow: 0 10px 30px 0px rgba(42, 100, 23, 1);
  -o-box-shadow: 0 10px 30px 0px rgba(42, 100, 23, 1);
  -ms-box-shadow: 0 10px 30px 0px rgba(42, 100, 23, 1);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover  {
  width: 80%;
  background-color: rgba(103, 159, 8, 1);
  box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
}
.login-more {
  margin-top: 2rem;
  padding-left: 16px;
}

.login-more ::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #cccccc;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.txt1 {
  font-family: var(--ff-primary);
  font-size: 15px;
  color: #999999;
  line-height: 1.5;
}

.header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header_logo {
  display: block;
}
.header_prog {
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 100%;
}
.header_user {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: rgb(var(--clr-neutral-200));
  height: 100%;
}

.logo-container {
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.dvItems_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100px;
}
.dvItems_icon {
  display: block;
  width: 100%;
  margin-top: 5px;
  text-align: center;
}
.dvItem_text {
  display: block;
  width: 100%;
  margin-top: 5px;
  text-align: center;
  font-weight: 500;
}