/*
 * Normalize
 */

* {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

body {
  margin: unset;
  padding-bottom: 100px;
  position: relative;
}

/*
 * Login Page
 */

.login-container{
  box-shadow: 3px 3px 11px -3px rgba(1,80,150,1);
  /* border: 1px solid var(--main-color); */
  border-radius: 10px;
  width: 500px;
  margin: 10vh auto;
  padding: 30px;
}
.uName-section{
  /* border: 1px solid var(--main-color);  */
  margin-bottom: 10px;
}
.pWord-section{
  margin-top: 10px;
  margin-bottom: 10px;
  /* border: 1px solid var(--main-color);  */
}
.loginText{
  font-size: 1.1em;
}
.inputField{
  width: 70%;
}
.submitBtn{
  width: 150px;
  height: 30px;
  color: white;
  background-color: var(--main-color);
  border-color: var(--main-color);
  border-radius: 5px;
}


/*
 * Error 404 page
 */

.error404_align {
  display: grid;
  justify-content: center;
  margin: 50px 0;
}

.error404_main_msg {
  font-size: 36px;
  text-emphasis: bold;
  margin: 0 10px;
  color: var(--error-color);
}

.error404_img {
  width: 30%;
  display: block;
  margin: 0 auto;
}

.error404_msg {
  font-size: 16px;
  margin: 0 10px;
}


/*
 * Header
 */


.header {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.header img {
  padding: 10px;
}

.header_logo {
  height: 44px;
}

.header_changeLang {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.header_changeLang:last-child {
    padding-right: unset;
}

.header_flag,
.header_switch {
  height: 20px;
}

.header_switch {
  width: 44px;
  border-radius: 10px;
  background-color: #E6E6E6;
  display: flex;
}

.header_switch_button {
  background-color: var(--main-color);
  height: 14px;
  width: 14px;
  border-radius: 14px;
  margin: 3px;
}

.header_switch:lang(el) {
  justify-content: flex-end;
}

.header_switch_button:active {
  justify-self: right;
}

.header_line {
  height: 10px;
  width: 100%;
  background-color: var(--main-color);;
}

.header_box_right {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  margin-right: 10px;
}

header a{
    font-size: 14px;
}

@media (max-width:600px) {
  .header_logo {
    width: 40%;
    object-fit: contain;
  }
}

/*
 * Footer
 */

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: var(--main-color)
}

.footer * {
  color: white;
  width: auto;
}

.footer_cpicon {
  height: 20px;
  padding: 0 10px;
}

@media (max-width: 600px) {
  .footer {
    height: 10vh;
  }
}
