html,
body {
  padding: 0;
  margin: 0;
}
body {
  background: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper {
  width: 380px;
  max-width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.logo {
  text-align: center;
}
.logo img {
  max-width: 100%;
  height: auto;
}
article {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
article img {
  width: 48px;
  height: 48px;
}
nav {
  display: flex;
  justify-content: center;
}
nav img {
  width: auto;
  height: 35px;
}
/**
 * Form
 */
.content {
  width: 1000px;
  max-width: 100%;
  font-size: 15px;
  padding-bottom: 100px;
}
.content .btn-warning {
  background: #e30613 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}