
:root {
  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* rest of the colors */
  --black: #222;
  --black-10: #4a3e3e;
  --grey-20: #cccccc;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #417ac8;
  --green-light: #d1e7dd;
  --green-dark: #2d3748;
  --linear-gradient: linear-gradient(286.64deg, #009078 2.27%, #a4f6e9 213.82%);
  --linear-gradient-10: linear-gradient(
    286.64deg,
    #085346 2.27%,
    #5af0d7 213.82%
  );
  /* rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--grey-900);
  --borderRadius: 0.25rem;
  --smallText: 0.8em;
  --transition: all 0.4s linear;
  --max-width: 1120px;
  --fixed-width: 452px;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    background: var(--white);
    font-family: urw-din-arabic-medium !important;
    font-weight: 400;
    line-height: 1.75;
    color: var(--textColor);
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  max-width: 40em;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    margin-bottom: 1.38rem;
    font-family: urw-din-arabic-medium !important;
    font-weight: 500;
    line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}

.img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/* buttons */

.btn {
    display: inline-block;
    color: var(--white);
    background: var(--linear-gradient);
    border: transparent;
    border-radius: var(--borderRadius);
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    font-family: urw-din-arabic-medium !important;
    transition: var(--transtion);
    box-shadow: var(--shadow-1);
    height: 46px;
}
.btn:hover {
  background: var(--linear-gradient-10);
  box-shadow: var(--shadow-3);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* form */

.form {
    width: 100%;
    /*height: 550px;*/
    margin: auto;
    max-width: var(--fixed-width);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
    padding: 2rem 2.5rem;
}
.form-label {
    display: block;
    color: var(--green-dark);
    font-size: var(--smallText);
    margin-bottom: 0.5rem;
    font-family: urw-din-arabic-medium !important;
}
.form-input {
    width: 100%;
    height: 44px;
    padding: 0.375rem 0.75rem;
    border-radius: var(--borderRadius);
    border: 1px solid var(--grey-200);
    font-family: urw-din-arabic-medium !important;
    outline: 0;
}

.form-row {
  margin-bottom: 1rem;
}
.form-check {
  margin: 1.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;

  > span {
    padding-left: 0.5rem;
    font-size: 0.7rem;
    color: var(--green-dark);
  }
}
::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}

/*
=============== 
Main Page
===============
*/
/* .page {
  margin: 0 auto;
  min-height: calc(100vh - (6rem + 4rem));
} */
.hero {
  height: 45vh;
  background: url("../images/bg-login.png") center/cover no-repeat;
  position: relative;
}
.hero-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text {
  color: var(--white);
  text-align: center;
  margin-bottom: 11rem;
}
/*
=============== 
Contact Page
===============
*/
.login {
    position: relative;
    bottom: 215px;
    z-index: 99;
    margin-block-end: 50px;
}
/* .login__container {
} */
.login__contant {
  text-align: center;
}
.login__title {
    margin-top: 1rem;
    color: var(--black-10);
    font-weight: bold;
    font-size: 24px;
}
.contact-form {
  width: 100%;
  margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 49px;
  height: 23px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--grey-20);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--red-dark);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--red-dark);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* ====Style Footer==== */
.page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -12.5rem 0;

  > p {
    margin: 0;
  }
}
.footer-logo {
  font-size: 18px;
  color: #a0aec0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer-logo {
    font-size: 14px;
  }
}
