* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #141c2f;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #000;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

span {
  display: block;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__form {
  max-width: 600px;
  width: 100%;
}

.main__card {
  max-width: 600px;
  width: 100%;
  margin-top: 25px;
  background: #1f2a48;
  border-radius: 7px;
}

.main__card--error {
  padding: 20px;
  color: #a5afc4;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.form__input {
  width: 100%;
  padding: 25px 35px 25px 60px;
  background: #1f2a48;
  border-radius: 7px;
  border: 0;
  outline: 0;
  font-size: 18px;
  color: #858da4;
}

.form__input::-webkit-input-placeholder {
  color: #858da4;
}

.form__input:-ms-input-placeholder {
  color: #858da4;
}

.form__input::-ms-input-placeholder {
  color: #858da4;
}

.form__input::placeholder {
  color: #858da4;
}

.form__icon {
  position: absolute;
  left: 20px;
  color: #0275f3;
}

.form__button {
  display: inline-block;
  margin-left: -93px;
  padding: 15px 20px;
  border: 0;
  outline: 0;
  background: #0275f3;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.1s linear;
  transition: background 0.1s linear;
}

.form__button:hover {
  background: #1785fd;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 25px;
}

.card__avatar {
  width: 125px;
  height: auto;
}

.card__avatar--img {
  width: 100%;
  border-radius: 50%;
}

.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 40px;
  width: 100%;
}

.card__info--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card__info--header--description {
  color: #fff;
}

.card__info--header--description--name {
  font-weight: 500;
  font-size: 25px;
}

.card__info--header--description--login {
  margin-top: 5px;
  color: #0275f3;
}

.card__info--header--date {
  margin-top: 9px;
  font-size: 15px;
  color: #a5afc4;
}

.card__info--bio {
  margin: 20px 0;
  color: #a5afc4;
}

.card__info--stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background: #141c2f;
  border-radius: 7px;
}

.card__info--stat--item {
  font-weight: 500;
  margin-right: 20px;
}

.card__info--stat--item span {
  color: #a5afc4;
  font-weight: 400;
  font-size: 14px;
}

.card__info--footer {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card__info--footer--item {
  display: inline;
  width: 50%;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.card__info--footer--item:hover {
  color: #a5afc4;
}
/*# sourceMappingURL=style.css.map */