@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Medium.eot');
    src: url('../font/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Gotham-Medium.woff2') format('woff2'),
        url('../font/Gotham-Medium.woff') format('woff'),
        url('../font/Gotham-Medium.ttf') format('truetype'),
        url('../font/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Bold.eot');
    src: url('../font/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/Gotham-Bold.woff2') format('woff2'),
        url('../font/Gotham-Bold.woff') format('woff'),
        url('../font/Gotham-Bold.ttf') format('truetype'),
        url('../font/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
}
.blocConnexion{
  background-image: linear-gradient(to right top, #c71334, #b63663, #97527d, #79647f, #6d6d6d);
  /* background-image: url('../img/bgLog.jpg');
  background-repeat: no-repeat; */
  background-image: url('../img/fond-index.png');
  background-repeat: no-repeat;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center!important;
  justify-content: center;
  background-size: cover;
}
.blocForm{
  /* margin-left: 25%;
  flex: 0 0 50%;
  max-width: 50%; */
  padding: 4.5rem 0 3rem 0;
  background: rgba(255, 255, 255, .6);
  border-radius: .8rem;
  position: relative;
}
.blocForm img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
form{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 0 0 60%;
  max-width: 60%;
  margin-left: 20%;
  font-family: "Gotham";
  font-weight: 500;
}
.colForm{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 5px 0;
  align-items: center;
}
.colForm input{
  height: auto;
  font-size: 14px;
  /* border-radius: .4rem; */
  /* border: solid 1px rgba(34, 34, 34, .6); */
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: solid 2px rgba(34, 34, 34, .6);
  background-color: rgba(255, 255, 255, .7);
  padding: 0.5rem;
  transition: all ease-in 0.4s;
  outline:0;
  box-shadow: none;
  position: relative;
}

.colForm input:hover,
.colForm input:focus{
  border-color: rgba(199, 19, 52, .9);
  outline:0;
  box-shadow: none;
}

h1{
  text-align: center;
  margin-top:0;
  font-family: "Gotham";
  font-weight: bold;
  font-size: 60px;
  color:#c71334;
}

.btnSub::before{
  content: "";
  position: absolute;
  background: #c71334;
  inset: 0px 100% 0px 0px;
  z-index: -1;
  transition: right 0.4s ease-in-out 0s;
  /* border-radius: .3rem; */
  left: 0;
  bottom: -1px;
}
.btnSub:hover::before{
  right: 0;
}
.btnSub{
  margin-top: 40px;
  font-size: 14px;
  /* border-radius: .4rem; */
  border:none;
  border-bottom: solid 2px rgba(34, 34, 34, .6);
  padding: 0.5rem 25px;
  /* transition: all ease-in-out 0.3s; */
  background-color: rgba(255, 255, 255, .7);
  font-family: "Gotham";
  font-weight: 500;
  cursor: pointer;
  color : #222222;
  position: relative;
  z-index: 2;
  transition: right 0.4s ease-in 0s;
}
.btnSub:hover,
.btnSub:focus{
  border-bottom: solid 2px #c71334;
  /* background-color: #c71334; */
  color: #ffffff;
  outline: 0;
}

@media(max-width: 767px) {
  .colForm input{
    width: 100%;
  }
  h1{
    font-size: 50px;
  }
}
