* {
  box-sizing: border-box;
}
html, body {
  margin:0;
  padding:0;
  height:100%;
}
body {
  font-size:18px;
  font-family: 'Open Sans', sans-serif; 
  line-height:1.4;
  min-width:320px;
  overflow-x:hidden; 
  color:#fff;
  background:#000000;
}
a {
  text-decoration:underline;
  color:#010001;
}
a:hover {
  text-decoration:none;
  color:#010001;
}
p {
  margin-bottom:20px;
  color:#010001;
}
ul, ol {
  list-style:outside;
  padding:0;
  margin-left:20px;
}
ul li, ol li {
   margin:0 0 10px; 
}
input, textarea {
  font-family: 'Open Sans', sans-serif;   
  display:block;
}
img {
  max-width:100%;
}


/* --------------- WRAPPER STYLES --------------- */
.container {
  max-width:800px;
  padding-left:15px;
  padding-right: 15px;
  padding-top:30px;
  margin-left:auto;
  margin-right: auto;
}
.wrapper {
  width: 100%;
  height: 100%;
  transition: background 0.3s;
  background-image: url("/img/Kate.png");
  background-size:cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* --------------- BUTTONS & DESIGN ELEMENTS --------------- */
.btn,
.btn:focus,
input[type='submit'],
input[type='submit']:focus {
  background:#ffcb08;
  padding:14px 10px 10px;
  font-size:18px;
  border:none;
  text-align:center;
  font-family: 'Trade Gothic Bold No 2';  
  transition: 0.3s background;
  line-height:18px;
  cursor:pointer;
}
.btn:hover,
input[type='submit']:hover {
  background:#edbb00;
  transition: 0.3s background;  
}

/* --------------- HEADER --------------- */
.logo_wrap {
  text-align:center;
  margin:0 auto;
}
.logo {
  display:inline-block;
}
.power_by {
  background: url('../img/ods.png') 50% 100% no-repeat;
  width:68px;
  height:80px;  
  position: absolute;
  top:15px;
  right:30px;
}
.power_by span {
  display:block;
  text-align:center;
  font-size:10px;
  font-weight:bold;
  color:#999999;
  text-transform: uppercase;
}

/* --------------- FORM --------------- */
.subscribe-form {
  text-align: center;
  position:absolute;
  bottom:5%;
  left: 0;
  right: 0;
}
.subscribe-form h1 {
  font-size:30px;
  font-weight:500;
  color:#fff;
  margin:0 0 5px;
}
.subscribe-form p {
  font-size:15px;
  font-weight:500;
  color:#bfbfbf;
  margin:0;
}
.subscribe-form form {
  display:flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  margin-top:30px;
}
input[type=text] {
  background: #fff;
  padding:9px 20px;
  border:none;
  margin:0 5px;
  width:150px;
  margin-bottom: 10px;
}
input[type="text"]::-moz-placeholder {
  color: #878686;
  text-transform: uppercase;
  font-weight: 500;
  font-size:12px;
}
input[type="text"]::-webkit-input-placeholder { 
  color: #878686;
  text-transform: uppercase;
  font-weight: 500;
  font-size:12px;
}
input[type="text"]:-ms-input-placeholder { 
  color: #878686;
  text-transform: uppercase;
  font-weight: 500;
  font-size:12px;
}
input[type="text"]::-ms-input-placeholder { 
  color: #878686;
  text-transform: uppercase;
  font-weight: 500;
  font-size:12px;
}
input[type="text"]::placeholder { 
  color: #878686;
  text-transform: uppercase;
  font-weight: 500;
  font-size:12px;
}
.subscribe-form button {
    margin: 0 5px 10px;
    background: #edb605;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
    border: none;
    min-width: 150px;
    letter-spacing: 2px;
    min-height: 37px;
    cursor: pointer;
}

@media (max-width: 768px) {
  .wrapper {
    background-position: 50% -70px;
  }
  .logo_wrap {
    max-width:70%;
  }
  .power_by {
    width:40px;
    height:60px;
    background-size: contain;
    top:5px;
    right:10px;
  }
  .power_by span {
    font-size:7px;
  }
  .subscribe-form {
    bottom:2%;
  }
}


#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;
    }