* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

header {
  background: #2c3e50;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
header img {
  width: 100px;
  margin-top: 0;
}

.container {
  max-width: 1000px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn {
  display: inline-block;
  margin: 20px 15px;
  padding: 10px 20px;
  border: none;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #27ae60;
  color: white;
}

.btn-primary:hover {
  background: #219150;
}

.btn-danger {
  background: #e74c3c;
  color: white;
}

.btn-danger:hover {
  background: #c0392b;
}

.hidden {
  display: none;
}

form {
  text-align: left;
  margin-top: 30px;
}

label {
  font-weight: bold;
  display: block;
  margin: 15px 0 8px;
}

input, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 50px;
}

@media only screen and (max-width: 820px) {
  .btn {
    margin-left: 0;
  }
  .container {
    width: 95%;
    padding: 20px;
  }
  .container .cont {
    text-align: center;
  }
  .container .cont button {
    width: 100%;
  }
  .container .cont #cvvv {
    font-size: 25px;
  }
  .container .p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */