@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to right, #4facfe 0%, #00fed4 100%);
}

.wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 550px;
  padding: 30px 40px;
  border-radius: 10px;
  background-color: #fff;
}

.container h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

.container input {
  width: 100%;
  outline: none;
  height: 50px;
  border: solid 1px #ccc;
  font-size: 20px;
  padding: 10px;
  margin: 10px 0 20px;
  border-radius: 5px;
}

.container button {
  width: 100%;
  height: 50px;
  border: none;
  background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s all ease;
}

.container button:hover {
  transform: scale(1.02);
}

/* Style de la liste déroulante */
#link-type {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
}

#link-type:focus {
  outline: none;
}

#link-type option {
  padding: 10px;
}

#link-type option:hover {
  background-color: #f0f0f0;
}
