﻿/*MY STYLES*/
@font-face {
  font-family: "Roboto";
  src: url("~/Content/fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("~/Content/fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("~/Content/fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Audiowide";
  src: url("~/Content/fonts/Audiowide-Regular.ttf") format("truetype");
}
.header {
  height: 35px;
  background-color: #5E9CEA;
  border-radius: 0 0 15px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__logo-wrapper {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.header .header__logo-wrapper .header__logo {
  margin-right: 15px;
  font-family: "Audiowide";
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.header .header__logo-wrapper .header__menu {
  background: url("Images/Controls/menu.svg");
  width: 15px;
  height: 13px;
  cursor: pointer;
}
.header .header__actions-wrapper {
  margin-right: 30px;
}
.header .header__actions-wrapper li {
  list-style-type: none;
}
.header .header__actions-wrapper .header__actions {
  display: flex;
  align-content: center;
}
.header .header__actions-wrapper .header__actions > .actions__item {
  cursor: pointer;
}
.header .header__actions-wrapper .header__actions .lang {
  margin-right: 15px;
}
.header .header__actions-wrapper .header__actions .user {
  margin-top: 10px;
  background-image: url("Images/Controls/user.svg");
  width: 15px;
  height: 15px;
}
.header .header__actions-wrapper .header__actions .btn {
  display: contents;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #dadddf;
}

.main .body {
  width: 271px;
  height: 97%;
}

.main .body:not(.empty) {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  height: 325px;
  margin-left: 40%;
  margin-top: 10%;
  position: relative;
}

.form-horizontal {
  padding-bottom: 40px;
  border-radius: 15px;
  text-align: center;
  width: 400px;
  border-radius: 0 15px 15px 0;
  padding-left: 0;
  position: relative;
}

.form-horizontal .heading {
  display: block;
  font-size: 25px;
  font-weight: 700;
  padding: 35px 0;
  color: #5E9CEA;
  font-family: Audiowide;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: text !important;
  background-color: azure;
  opacity: 0.5;
}

.form-horizontal .form-group {
  padding: 0 40px;
  margin: 0 0 25px 0;
  position: relative;
}

.form-horizontal .form-control {
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  box-shadow: none;
  padding: 0 20px 0 45px;
  height: 40px;
  transition: all 0.3s ease 0s;
}

.form-horizontal .form-control:focus {
  background: #e0e0e0;
  box-shadow: none;
  outline: 0 none;
}

.form-horizontal .form-group i {
  position: absolute;
  top: 12px;
  left: 60px;
  font-size: 17px;
  color: #c8c8c8;
  transition: all 0.5s ease 0s;
}

.form-horizontal .form-control:focus + i {
  color: #00b4ef;
}

.form-horizontal .fa-question-circle {
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 60px;
  font-size: 20px;
  color: #808080;
  transition: all 0.5s ease 0s;
}

.form-horizontal .fa-question-circle:hover {
  color: #000;
}

.form-horizontal .main-checkbox {
  float: left;
  width: 20px;
  height: 20px;
  background: #11a3fc;
  border-radius: 50%;
  position: relative;
  margin: 5px 0 0 5px;
  border: 1px solid #11a3fc;
}

.form-horizontal .main-checkbox label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.form-horizontal .main-checkbox label:after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.form-horizontal .main-checkbox input[type=checkbox] {
  visibility: hidden;
}

.form-horizontal .main-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.form-horizontal .text {
  float: left;
  margin-left: 7px;
  line-height: 20px;
  padding-top: 5px;
  text-transform: capitalize;
}

.form-horizontal .btn {
  float: right;
  font-size: 14px;
  color: #fff;
  background: #5E9CEA;
  border-radius: 10px;
  padding: 10px 25px;
  border: none;
  text-transform: capitalize;
  transition: all 0.5s ease 0s;
}

.form-horizontal .form-group {
  padding: 0 25px;
}

.form-horizontal .form-group label {
  display: flex !important;
  margin-left: 5px;
}

.form-horizontal .btn {
  padding: 5px 20px;
  margin-right: 60px;
}

*, *::before, *::after {
  box-sizing: unset;
}
