/* DEBUT Necessaire sur All Page */
@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}
@font-face {
  font-family: 'OrbitronBold';
  src: url('/fonts/Orbitron/static/Orbitron-Bold.ttf') format('truetype');
  font-weight: bold; 
  font-style: normal;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;

}

body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: radial-gradient(circle at center top, #6a38f1, #000000 35vw);
  height: 100%; /* Prend toute la hauteur de la fenêtre */
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto; /* Le contenu prend tout l'espace et le footer reste en bas */
}
/* FIN Necessaire sur All Page */


.sell-container{
display: flex;
align-items: center;
justify-content: center;
gap: 100px;
}
.sell-container img{
width: 20vmax;
}

.image-procedure {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3vh;
}

.procedure{
  display: flex;
  flex-direction: column;
  width: 20vw;
  align-items: center;
}
.procedure h1{
  width: max-content;
  text-align: center;
  font-size: 1.5vmax;
  font-weight: bold;
  background: linear-gradient(to right, #0004ff, #00ffbf, #ff00f7);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}
.procedure p{
text-align: center;
color: #ffffff;
}

.contactLink{
  font-weight: bold;
  text-decoration: none;
  color: #5c5cd4;
  transition: color 0.3s ease;
}

.contactLink:hover{
  text-decoration: underline;
  cursor: url('/images/cursorIco.png'), auto;
}


/* Style général du formulaire */


form {
width: 50vw;
background-color: #2c2c2c;
border-radius: 10px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.3); /* Fond noir transparent */
transition: transform 0.3s ease;
border: 3px solid #6a38f1; /* Change la couleur selon tes préférences */
}


label {
font-size: 15px;
margin-bottom: 5px;
display: block;
color: #f0f0f0;
}

input[type="number"],
input[type="text"],
select {
width: 100%;
padding: 10px;
margin: 5px 0 10px 0;
border: none;
border-radius: 5px;
background-color: #3c3c3c;
color: #f0f0f0;
font-size: 15px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.0001);
transition: all 0.3s ease;
}

input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
outline: none;
background-color: #454545;
box-shadow: 0 0 10px #6a38f1;
}

input[type="submit"] {
background-color: #6a38f1;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
width: 100%;
font-size: 15px;

transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
background-color: #6a38f1;
}

/* Style pour les lignes horizontales */
hr {
border: 0;
height: 1px;
background: #444;
margin: 10px 0;
}

/* Animation au chargement du formulaire */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

form {
animation: fadeIn 0.5s ease-in-out;
}

/* Animation pour les champs du formulaire */
input[type="number"],
input[type="text"],
select {
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
box-shadow: 0 0 10px #6a38f1;
}

/* Animation survol du bouton */
@keyframes pulse {
0% {
    box-shadow: 0 0 10px #6a38f1;
}
50% {
    box-shadow: 0 0 20px #6a38f1;
}
100% {
    box-shadow: 0 0 10px #6a38f1;
}
}

input[type="submit"]:hover {
animation: pulse 1s infinite;
cursor: url('/images/cursorIco.png'), auto;

}

@media only screen and (max-width: 768px) {
  body, html {
    background: radial-gradient(circle at center top, #6a38f1, #000000 45%);
  }
form{

  width: 80%;
}
.sell-container img{
  width: 40%;
}
.sell-container{
  flex-direction: column;
  gap: 30px;
}
input[type="submit"] {
  font-size: 15px;
}

input[type="number"],
input[type="text"],
select {
  font-size: 15px;
}
label {
  font-size: 15px;
}
.procedure{
  width: 80%;
}
.procedure h1{
  font-size: 25px;
  }
  .procedure p{
  font-size: 14px;
  }
}

