@font-face {
    font-family: "sofitel";
    src: url("../fonts/sofitel.otf");
   }

body {
    background-color: #e9e9e9;
    font-family: sofitel;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    justify-content: center;
    color: white;
    min-height: 100vh;
}

a {
    color: white;
    text-decoration: none;
}

* {
box-sizing: border-box;
transition: .25s all ease;
}

.container {
display: block;
position: relative;
z-index: 0;
padding: 1rem 1rem 0 1rem;
max-width: 1000px;
min-height: 100vh;

}

.container:after {
content: '';
display: inline-block;
position: absolute;
z-index: 0;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: radial-gradient(ellipse at left bottom, rgb(0, 0, 0) 0%,rgba(22, 22, 22, 0.9) 59%, rgba(30, 30, 30, 0.9) 100%);
box-shadow: 0 -20px 150px -20px rgba(0, 0, 0, 0.5);
}

.form-contest {
position: relative;
z-index: 1;
padding-bottom: 4.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contest-input {
color: white;
font-size: 1.15rem;
width: 100%;
padding: .5rem 1rem;
border: 2px solid transparent;
outline: none;
border-radius: 1.5rem;
background-color: rgba(255, 255, 255, 0.25);
letter-spacing: 1px;
}

.contest-input:hover,
.contest-input:focus{
color: white;
border: 2px solid rgba(255, 255, 255, 0.5);
background-color: transparent;
}

.contest-input + .contest-input-label {
margin-top: 1.5rem;
}

.contest-input-label {
display: block;
padding-left: 1rem;
}

.contest-input-label,
.conditions-label {
color: rgba(255, 255, 255, 0.5);
text-transform: uppercase;
font-size: .75rem;
margin-bottom: 1rem;
}

.conditions-label {
display: inline-block;
position: relative;
padding-left: 1.5rem;
margin-top: 2rem;
margin-left: 1rem;
color: #ffffff;
font-size: .75rem;
text-transform: inherit;
}

.conditions-checkbox {
position: absolute;
top: .1rem;
left: 0;
margin: 0;
}

.submit {
color: #ffffff;
font-size: 1rem;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 1rem;
padding: .75rem;
border-radius: 2rem;
display: block;
width: 100%;
background-color: rgba(0, 164, 207, .75);
border: none;
cursor: pointer;
}

.submit:hover {
background-color: rgba(0, 164, 207, 1);
}

.footer {
display: block;
margin: 3rem 0 3rem 0;
text-align: center;
color: rgba(255, 255, 255, 0.75);
font-size: .75rem;
text-decoration: none;
position: relative;
z-index: 1;
}

.terms {
text-justify: inter-word;
}

.logo {
display: flex;
justify-content: center;
}

.logo img{
    width: 300px;
    z-index: 1;
}

.error {
color: red;
border-color: red;
}

#win {
color: #ffffff;
font-size: 1.5rem;
text-align: center;
margin-bottom: 3rem;
}

.login {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(ellipse at left bottom, rgb(0, 0, 0) 0%,rgba(22, 22, 22, 0.9) 59%, rgba(30, 30, 30, 0.9) 100%);
}

.title-login {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin: 2rem;
}

.footer-rgpd {
    padding-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

#no_contest {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    padding: 2rem;
}

.checkbox-wrapper {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .checkbox-wrapper .ikxBAC {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 20px;
    margin: 0;
    position: relative;
    width: 30px;
    padding-right: 10px;
  }

  .checkbox-wrapper .ikxBAC::before {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
  }

  .checkbox-wrapper .ikxBAC,
  .checkbox-wrapper .ikxBAC::after {
    transition: all 100ms ease-out;
  }

  .checkbox-wrapper .ikxBAC::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 14px;
  }

  .checkbox-wrapper input[type=checkbox] {
    cursor: pointer;
    margin-right: 1rem;
  }

  .checkbox-wrapper .ikxBAC:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transition-duration: 0s;
  }

  .checkbox-wrapper .ikxBAC:checked {
    background-color: rgba(0, 164, 207, .75);
  }

  .checkbox-wrapper .ikxBAC:checked::after {
    background-color: #fff;
    left: 13px;
  }

  .checkbox-wrapper :focus:not(.focus-visible) {
    outline: 0;
  }

  .checkbox-wrapper .ikxBAC:checked:hover {
    background-color: rgba(0, 164, 207, .75);
  }