@import url(../../config/config.css);

* {
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, Helvetica;
  outline: 0px dashed grey;
  box-sizing: border-box;
}

:root {
  --Gitaluevo: "Gitaluevo", "Arial", "sans-serif";
  --Roboto: "Roboto", "Arial", "sans-serif";
  --orange: #ff8838;
  --blue: #4d7b89;
  --blue-light: #376978;
  --background: whitesmoke;
}

@font-face {
  font-family: Gitaluevo;
  src: url(./font/Gitaluevo.ttf);
}

body {
  background: var(--background);
  display: grid;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}

/* HEADER */

.header-homePage {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 1rem;
  background: transparent;
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  border-radius: 1rem;
  border: 5px solid var(--blue);
}

.header-logo_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-homePage .logo_bloc {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: url(../../Asset/Picture/logo-2_low_withoutName.png) white;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-logo_container-title {
  margin-left: 15px;
}

.header-homePage .header-logo_container-title h1,
.header-homePage .header-logo_container-title h1 span {
  font-size: 2rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-family: var(--Gitaluevo);
  font-weight: lighter;
  color: white;
}

.header-homePage .header-logo_container-title h1 span {
  color: var(--orange);
}

.header-homePage .header-logo_container-title h2 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-family: var(--Gitaluevo);
  font-weight: lighter;
  color: white;
}

.header-homePage .header-link_container ul li:hover a::before {
  width: 130%;
}

/* MAIN */

.container-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-container-bloc {
  padding: 2rem;

  border: 5px solid #4d7b89;
  background: white;
  box-shadow: grey 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 40vw;
  border-radius: 1rem;
}

.bloc-input {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

.bloc-input label {
  padding: 0.5rem;
  color: var(--blue);
  font-size: 2rem;
  text-transform: uppercase;
}

.bloc-input input {
  padding: 0.5rem;
  border: 5px double var(--orange);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 2rem;
  text-align: center;
  background: whitesmoke;
}

.bloc-input input::placeholder {
  color: rgba(128, 128, 128, 0.315);
}

.bloc-input input:focus::placeholder {
  color: transparent;
}

.bottom_info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--blue);
  padding: 2rem;
  text-align: center;
  color: white;
}

.validate_button {
  padding: 1rem 5rem;
  border-radius: 1rem;
  border: 2px solid white;
  background: var(--orange);
  color: white;
  font-size: 2rem;
  border: 2px solid var(--orange);
  transition: 0.2s;
}

.validate_button:hover {
  background: white;
  color: var(--blue);
  border: 2px solid var(--orange);
}
