* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: sans-serif;
  min-height: 100vh;
  background-color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error {
  color: red;
  margin-bottom: 10px;
}

.sw-authentification {
  border: 1px solid lightgrey;
  background-color: #262626;
  width: 450px;
  margin: auto;
  padding: 0 50px;
}
.sw-authentification__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.sw-authentification__header {
  margin-bottom: 20px;
}
.sw-authentification__header h1 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 20px;
  color: #b3b2b2;
}
.sw-authentification__header p {
  font-size: 13px;
  text-align: center;
  color: #b3b2b2;
}
.sw-authentification__body {
  color: #b3b2b2;
}

.sw-form {
  margin-bottom: 20px;
}
.sw-form__input {
  outline: none;
}
.sw-form__input:not(:last-child) {
  margin-bottom: 20px;
}
.sw-form__email {
  border: 1px solid lightgrey;
  border-radius: 2px;
  display: block;
  width: 100%;
  padding: 12px;
}
.sw-form__password {
  border: 1px solid lightgrey;
  border-radius: 2px;
  display: block;
  width: 100%;
  padding: 12px;
}
.sw-form__submit {
  border-radius: 2px;
  display: block;
  width: 100%;
  padding: 12px;
  background: #3317df;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
}
.sw-form__registration-link {
  border-radius: 2px;
  border: 1px solid #3C3374;
  width: 100%;
  display: block;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.sw-outer-authentification__header {
  font-size: 13px;
  text-align: center;
  margin-bottom: 15px;
}
.sw-outer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.sw-outer-links__item {
  width: 50%;
  padding: 0 10px;
}

.sw-google-link {
  text-decoration: none;
  border: 1px solid lightgrey;
  font-size: 14px;
  display: block;
  color: inherit;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sw-google-link__text {
  margin: 0 5px;
}

.sw-facebook-link {
  text-decoration: none;
  border: 1px solid lightgrey;
  font-size: 14px;
  display: block;
  color: inherit;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sw-facebook-link__text {
  margin: 0 5px;
}