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;
  box-sizing: border-box;
}
/* 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,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
  background-color: #fff;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
body.auto {
  height: auto;
}
.container {
  width: 100%;
  max-width: 768px;
  padding: 10px;
}
.authentification {
    background-color: #ebd1dc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.16);
    width: 50%;
}
.panel-title {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
  font-size: 24px;
  color: #000;
}
.help-text {
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}
.go-back, .go-download {
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  margin-top: 10px;
  display: block;
}
.go-back:hover,
.go-back:active,
.go-back:focus,
.go-download:hover,
.go-download:active,
.go-download:focus {
  text-decoration: none;
}
.go-download {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.authentification form {
  margin-top: 16px;
}
.authentification input {
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
  width: 100%;
  border: none;
}
.authentification input:focus-visible {
  outline-color: #ebd1dc;
}
.authentification button,
.download-btn {
  background-color: #000;
  border: none;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #000;
  transition: all .6s ease;
  cursor: pointer;
  color: #FFF;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: block;
  text-align: center;
}
.authentification button:hover,
.authentification button:active,
.authentification button:focus,
.download-btn:hover,
.download-btn:focus,
.download-btn:active {
  background-color: transparent;
  color: #000;
}
.notification {
  margin: 10px 0;
  padding: 8px;
  border-radius: 4px;
  color: #FFF;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}
.notification.is-danger {
  background-color: #DC2626;
}
.notification.is-success {
  background-color: #16A34A;
}

#page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#page-wrapper h1, .content h2 {
  margin-bottom: 10px;
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 24px;
  line-height: 1.4;
}
.content h2 {
  margin-top: 40px;
}
#page-wrapper p {
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.content p {
  text-align: center;
}
.content strong {
  font-weight: 700;
}
.content ul {
  list-style-type: square;
  list-style-position: inside;
  margin: 10px 0;
}
.content ul li {
  line-height: 2;
}
.content.page p {
  text-align: left;
  margin-bottom: 20px;
}
.content.page img {
  max-width: 100%;
}
.content .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  gap: 20px;
}
.logo {
  margin-bottom: 20px;
  align-self: center;
}
.logo > img {
  max-width: 480px;
  width: auto;
}
.heading {
  text-align: center;
}
#page-wrapper.tuto {
  align-items: flex-start;
}
#page-wrapper .go-back {
  text-align: center;
}
.authentification .logo {
  text-align: center;
}
.authentification .logo img {
  max-width: 60%;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .authentification {
    margin: 0 auto;
  }
  .logo > img {
    max-width: 100%;
    width: auto;
  }
}
@media (max-width: 575px) {
  .authentification {
    width: 100%;
  }
  .content .buttons {
    flex-wrap: wrap;
  }
}