
main,
form,
h1 {
	display: flex;
  justify-content: center;
	flex-direction: column;
  align-items: center;
}

aside {
  
  padding-top: 1.4rem;

  h2 {
    text-align: center;
    color: var(--bleu-fonce);
    font-size: clamp(1.4rem,1.6vw,2rem);
  }

  .btn-public-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    a {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.1rem 1.8rem;
      border-radius: 0.8em;
      color: var(--gris);
      border: 1px solid var(--gris);
      transition: all .2s;
      text-decoration: none;
      font-size: 1.5rem;
      margin: .5rem 1rem;
      width: calc(100% - 2rem);
      box-sizing: border-box;
      min-height: 6rem;

      &:hover {
        background-color: var(--noir);
        color: #fff;
      }
    }
  }
}

main {
	width: 100%;
	height: 100dvh;
}

form {
	background: #f7f7f7;
	border: 1px solid #f0f0f0;
	box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.42);
  border-radius: 0.2rem;
	padding: 2rem 4.2rem 3rem;
}

.profile-img-card {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  display: block;
}

h1 span {
	display: inline-block;
  background: var(--citycenter-color);
  font-size: 1.9rem;
  line-height: 1.9rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 3.5rem;
}

form input {
	display: block;
	width: 100%;
	margin-bottom: 1.5rem;
  padding: .375rem .75rem;
  border-radius: .25rem;
  border: 1px solid #ced4da;
  padding: .6rem 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all 0.3s;
  box-sizing: border-box;
}
form input:focus,
form input:active {
	border-color: rgb(104, 145, 162);
  outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(104, 145, 162);
}

form button {
	display: block;
	width: 100%;
	background-color: var(--bleu-fonce);
	color: #fff;
	font-weight: 700;
  font-size: 14px;
  height: 36px;
  border-radius: .25rem;
  border-style: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
}


form button:hover {
	opacity: 0.8;
}