:root {
  background: #1d1d1b;
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  background-color: #1d1d1b;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  background: #1d1d1b;
  padding: 20px;
}

form h2 {
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 10px 0 5px;
}

.my-svg {
  width: 400px;
  height: 400px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

#status {
  margin-top: 20px;
  font-weight: bold;
}

svg {
  width: 1080px;
  height: 1080px;
  stroke-width: 0.5px;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  fill-opacity: 0;
  animation: logo-draw 4s linear forwards, logo-fade 1s linear 1.4s forwards;
}
.st0 {
  fill: #fecb04;
  stroke: #fecb04;
}
.st1 {
  fill: #fff;
  stroke: #fff;
}
.st2 {
  fill: #ff7915;
  stroke: #ff7915;
}
.st3 {
  fill: #2ba4ef;
  stroke: #2ba4ef;
}
@keyframes logo-draw {
  from {
    stroke-dashoffset: 300;
  }
  to {
    stroke-dashoffset: 0;
    stroke-width: 0px;
  }
}
@keyframes logo-fade {
  to {
    fill-opacity: 1;
  }
}
