* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: 400;
}

body {
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  background: #000000;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../view/img/background.jpg') center center no-repeat fixed;
  background-size: cover;
  opacity: 0.2;
}

body,
html {
  width: 100%;
  height: auto;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

ul,
ol {
  list-style: none;
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #939393;
  opacity: 1;
  font-style: italic;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #939393;
  opacity: 1;
  font-style: italic;
  font-weight: 400;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.he {
  justify-content: flex-end;
}

.vc {
  align-items: center;
}

/* -------------------------------------------------------------------------- */

main {
  height: auto;
  min-height: 100vh;
  padding: 20px;
}

.box {
  width: 100%;
  max-width: 500px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  padding: 30px 30px 20px 30px;
  border-radius: 10px;
}

.row {
  margin-bottom: 10px;
}

.row i {
  position: absolute;
  z-index: 10;
  left: 10px;
  font-size: 24px;
  color: #7ab306;
}

input,
select {
  width: 100%;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  border-radius: 4px;
  padding: 10px 20px 10px 50px;
  font-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;  
}

input.error,
select.error {
  box-shadow: 0 0 5px rgba(255,0,0,1);
  background: #ffdbdb;
}

select {
  cursor: pointer;
}

a.button {
  background: #7ab306;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 18px;
  text-align: center;
  width: 100%;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

#registration,
#noregistration {
  display: none;
}

#noregistration {
  text-align: center;
}

#noregistration i {
  margin-bottom: 10px;
  font-size: 60px;
}

#noregistration h1 {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}

.feedback {
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  padding: 15px 30px 15px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.feedback.error {
  background: #ff0000;
}

.feedback.success {
  background: #7ab306;
}

.feedback i {
  margin-right: 15px;
  font-size: 30px;
  display: none;
}

.feedback.success i.success,
.feedback.error i.error {
  display: flex;
}

#reg-button.progress {
  opacity: 0.2;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */

@media only screen
and (min-width : 1281px) {
  .ease:hover {
    opacity: 0.5;
  }
  .transition {
    transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;    
  }
  .zoom:hover {
    transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);    
  }  
}