#content {
    width: 70vw;
    margin: 30px 15vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#title {
    font-size: 40px;
    color: #000;
    font-family: "Arial";
}
#desc {
    text-align: left;
}
.input {
    width: 500px;
    background-color: #f5f5f5;
    color: #242424;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
    font-size: 18px;
    text-align: left;
    margin: 5px;
}
.input:focus {
    border-bottom: 2px solid #00DE3A;
}
.input:hover {
    outline: 1px solid lightgrey;
}
#firstname,
#name {
    width: 232.5px;
}
textarea.input {
    height: 200px;
    resize: none;
} 
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    color: #006414;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button svg {
    position: absolute;
    width: 24px;
    fill: #006414;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .arr-1 {
    right: 16px;
}
.animated-button .arr-2 {
    left: -25%;
}
.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #70e990;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}
.animated-button:hover .arr-1 {
    right: -25%;
}
.animated-button:hover .arr-2 {
    left: 16px;
}
.animated-button:hover .text {
    transform: translateX(12px);
}
.animated-button:hover svg {
    fill: #006414;
}
.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #00DE3A;
}
.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}
#error {
    color: rgb(196, 29, 29);
    font-family: "Arial";
    font-size: 20px;
    font-style: italic;
    margin: 10px;
}