@import url(./global.css);
body {
  height: 100vh;
  background-color: white;
}

nav {
  display: flex;
  position: relative;
}
nav h3 {
  margin: 0 auto;
  width: 400px;
  color: yellowgreen;
}
nav a {
  display: flex;
  align-items: center;
  color: yellowgreen;
  text-decoration: none;
}
nav img {
  width: 40px;
}

.form {
  width: 350px;
  margin: 70px auto;
  align-items: center;
  -webkit-clip-path: inset(5% 3% 0% 0% round 15% 0% 20% 2%);
  clip-path: inset(5% 3% 0% 0% round 15% 0% 20% 2%);
  text-align: center;
  background: linear-gradient(to right, rgba(172, 255, 47, 0.466), rgba(107, 231, 190, 0.534));
  padding: 20px;
}
.form img {
  width: 80px;
  padding: 20px;
  height: 80px;
}
.form form {
  display: flex;
  margin: 0 auto;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.form form input {
  padding: 9px;
  width: 100%;
  border-radius: 6px;
  border: none;
}
.form form button {
  -webkit-clip-path: inset(5% 3% 0% 0% round 15% 0% 20% 2%);
  clip-path: inset(5% 3% 0% 0% round 15% 0% 20% 2%);
  padding: 10px;
  width: 100px;
  background: linear-gradient(to right, #f9fff1, rgba(255, 255, 255, 0.705));
}

form#votingForm {
  margin: 70px auto;
  text-align: center;
}
form#votingForm h2 {
  font-weight: 5em;
  font-size: 2rem;
  margin: 20px auto;
}
form#votingForm .candidates {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: center;
}
form#votingForm .candidates .candidate {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 200px;
  height: 350px;
  border-radius: 10px;
}
form#votingForm .candidates .candidate img {
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
form#votingForm .buttons {
  display: inline-flex;
  gap: 20px;
}
form#votingForm .buttons button, form#votingForm .buttons input[type=submit] {
  background: linear-gradient(to right, rgb(16, 190, 16), rgb(165, 240, 54));
  padding: 5px;
  border: none;
  width: 120px;
  border-radius: 5px;
}

@media screen and (max-width: 700px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav h3 {
    margin: none;
    width: 30%;
    position: absolute;
    right: 0;
    font-size: 1rem;
  }
}/*# sourceMappingURL=main.css.map */