﻿@charset "UTF-8";
:root {
  --primary: #273a97;
  --secondary: #5091cd;
  --white: #ffffff;
  --black: #1d2939;
  --green: #00b44f;
  --red: #c22440;
  --grey: #878a8f;
  --border-color: #b0b7d2;
  --input-color: #9ca6ca;
  --light-blue: #48bcff;
  --active: #2a285e;
  --gradient-background: linear-gradient(269.65deg, var(--secondary) 13.29%, var(--primary) 90.53%);
  --heading-font-size: 30px;
  --paragraph-font-size: 16px;
  --en-regular-font: "Argentum Sans", sans-serif;
  --en-bold-font: "Argentum Sans bold", sans-serif;
  --en-light-font: "Argentum Sans light";
  --en-medium-font: "Argentum Sans medium";
  --ar-regular-font: "GE Dinar One Regular Custom", sans-serif;
  --ar-regular-second-font: "GE Dinar One regular";
  --en-libre-font: "Libre Franklin";
}

@font-face {
  font-family: "acadimia";
  src: url("fonts/dinnextltarabic-regular.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
.acadimia {
  /*font-family: 'acadimia' !important;*/
}

/*    ███████████████████████████████████████████████████████████████████████████████████████*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

.main {
  position: relative;
  height: 100vh;
  padding: 20px;
}

.main .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notfound {
  max-width: 460px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
.notfound .notfound-404 {
  height: 158px;
  line-height: 153px;
}
.notfound .notfound-404 h1 {
  font-family: "Josefin Sans", sans-serif;
  color: #222;
  font-size: 220px;
  letter-spacing: 10px;
  margin: 0px;
  font-weight: 700;
  text-shadow: 2px 2px 0px #ffffff, -2px -2px 0px #ffffff;
}
.notfound .notfound-404 h1 > span {
  text-shadow: 2px 2px 0px var(--light-blue), -2px -2px 0px var(--light-blue), 0px 0px 8px var(--light-blue);
}
.notfound p {
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
.notfound a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  display: inline-block;
  padding: 10px 25px;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.notfound a:hover {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    height: 122px;
    line-height: 122px;
  }
  .notfound .notfound-404 h1 {
    font-size: 122px;
  }
}
app {
  position: relative;
  display: flex;
  flex-direction: column;
}

.top-row {
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

/*    ███████████████████████████████████████████████████████████████████████████████████████*/
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: url("../KAFD.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "acadimia" !important;
  color: white;
}

.wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 0.6rem;
  text-shadow: 0 1px 4px #000000;
}

.wrapper img {
  max-width: 220px;
  margin-bottom: 1.5rem;
}

h1, h2 {
  margin: 0 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

p {
  font-size: 1.5rem;
  margin: 0 1rem;
}

.spacer {
  height: 100px;
}
