@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: #333 url(../image/login-background.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
}

a {
  color: #f26522;
  text-decoration: none;
}

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.login-container .wrapper {
  display: flex;
  flex-flow: row wrap;
}
.login-container .wrapper .login-form {
  flex-basis: 340px;
  padding: 30px;
}
.login-container .wrapper .background {
  flex-grow: 1;
  background: url(https://makarun.pl/wp-content/themes/makarun/assets/img/about-timeline-bg.jpg);
  position: relative;
}
.login-container .wrapper .background .text {
  position: absolute;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  bottom: 32px;
  right: 41px;
}

h2 {
  color: #888;
  font-size: 17px;
  padding: 20px 0;
  text-align: center;
  font-weight: normal;
}

.form-group {
  margin: 10px 0;
}
.form-group.login, .form-group.password {
  position: relative;
}
.form-group.login:before, .form-group.password:before {
  content: "";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  position: absolute;
  top: 12px;
  left: 10px;
  color: #f26522;
}
.form-group.login.password:before, .form-group.password.password:before {
  content: "";
}
.form-group.login .form-control, .form-group.password .form-control {
  padding-left: 36px;
}
.form-group.submit {
  margin-top: 30px;
  text-align: center;
}

.form-control {
  display: block;
  border: none;
  border-bottom: 1px solid #eee;
  background: #fff;
  font-size: 14px;
  color: #333;
  width: 100%;
  height: 38px;
  outline: none;
  transition: all 600ms;
  padding: 0 10px;
}
.form-control:focus {
  border-bottom: 1px solid #f26522;
}

.btn-submit {
  border: none;
  background: #f26522;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  padding: 14px 40px;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.btn-submit:hover {
  background: #ed560e;
}

.login-icon {
  text-align: center;
}
.login-icon i {
  font-size: 40px;
  color: #f26522;
}

.remind-password {
  margin-top: 20px;
  text-align: center;
}
.remind-password a {
  color: #999;
  font-size: 13px;
}
.remind-password a:hover {
  color: #f26522;
}

.checkbox {
  margin-top: 15px;
  margin-left: 5px;
}
.checkbox label {
  font-size: 12px;
  color: #666;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.alert {
  font-size: 14px;
  color: #f26522;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 760px) {
  body {
    background: url(https://makarun.pl/wp-content/themes/makarun/assets/img/about-timeline-bg.jpg);
  }

  .login-container {
    position: static;
    transform: none;
    width: auto;
    margin: 50px 30px;
  }
  .login-container .wrapper .background {
    display: none;
  }
  .login-container .wrapper .login-form {
    flex-basis: auto;
    flex-grow: 1;
  }
}

/*# sourceMappingURL=login.css.map */
