@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
	overflow: hidden;
}

.login 
{
  position: absolute;
	top: 35vh;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
  overflow: hidden;
}

.login span 
{
  position: relative;
  display: block;
  width: calc(2vw - 2px);
  height: calc(2vw - 2px);
  background:  rgb( 20 15 08 / 0.4) ;
  z-index: 2;
  transition: 1.5s;
}
.login span:hover 
{
  background: rgb(193 98 54);
  transition: 0s;
}

.login .signin
{
  position: absolute;
  width: 400px;
  background: rgb(30 25 6 / 0.8);  
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,9);
}
.login .signin .content 
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.login .signin .content h2 
{
  font-size: 1vw;
  color: rgb(193 98 54);
  text-transform: uppercase;
}
.login .signin .content .form 
{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.login .signin .content .form .inputBox
{
  position: relative;
  width: 100%;
}
.login .signin .content .form .inputBox input 
{
  position: relative;
  width: 100%;
  background: #ccc;
  border: none;
  outline: none;
  padding: 25px 10px 7.5px;
  border-radius: 4px;
  color: rgb(193 98 54);
  font-weight: 500;
  font-size: 1vw;
}
.login .signin .content .form .inputBox i 
{
  position: absolute;
  left: 0;
  padding: 15px 10px;
  font-style: normal;
  color: #444;
  transition: 0.5s;
  pointer-events: none;
}
.signin .content .form .inputBox input:focus ~ i,
.signin .content .form .inputBox input:valid ~ i
{
  transform: translateY(-7.5px);
  font-size: 12px;
  color: #000;
}
.signin .content .form .links 
{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.signin .content .form .links a 
{
  color: #73fffe;
  text-decoration: none;
}
.signin .content .form .links a:nth-child(2)
{
  color: rgb(193 98 54);
  font-weight: 600;
}
.signin .content .form .inputBox input[type="submit"]
{
  padding: 10px;
  background: rgb(193 98 54);
  color:  rgb( 20 15 08 / 0.4) ;
  font-weight: 600;
  font-size: 1vw;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.video-services-plan {
        position: absolute;
        top: 2vh;
        left: 20vw;
        width: 25vw;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        z-index: 1002;
        font-family: 'Quicksand', sans-serif;
        border-radius: 4px;
        box-shadow: 0 15px 35px rgba(0,0,0,9);
        background: rgb(30 25 6 / 0.8);
        aspect-ratio: 16 / 9;
}

.video-services-plan .video-services {
        overflow:hidden;
        padding-bottom:56.25%;
        position:relative;
        height:0;
}

.video-services-plan .video-services iframe {
        left:0;
        top:0;
        height:100%;
        width:100%;
        position:absolute;
}

.video-explo-plan {
        position: absolute;
        top: 2vh;
        left: 53vw;
        width: 25vw;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        z-index: 1002;
        font-family: 'Quicksand', sans-serif;
        border-radius: 4px;
        box-shadow: 0 15px 35px rgba(0,0,0,9);
        background: rgb(30 25 6 / 0.8);
        aspect-ratio: 16 / 9;
}

.video-explo-plan .video-explo {
        overflow:hidden;
        padding-bottom:56.25%;
        position:relative;
        height:0;
}

.video-explo-plan .video-explo iframe {
        left:0;
        top:0;
        height:100%;
        width:100%;
        position:absolute;
}
