* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.container {
    text-align: center;
    max-width: 520px;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#error,
#success {
    display: none;
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.header-icon {
    position: absolute;
    top: 20px;
    left: 20px;
}

.header-icon img {
    width: 75px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type=text],
input[type=email],
textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: monospace;
}

button {
    padding: 10px 20px;
    background-color: #19AC84;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s;
    width: 100%;
    height: 45px;
    font-size: 1.2rem;
}

button:hover {
    background-color: #21D1A1;
    cursor: pointer;
}

.form-error {
    color: red;
    margin-bottom: 10px;
}

svg {
    width: 100px;
    display: block;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle {
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
}

.path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
}

.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
}

p {
    text-align: center;
    margin: 20px 0 20px;
    font-size: 1.25em;
}

.radio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.radio-label {
    text-align: center;
}

.animation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 15px 0 15px 0;
}

section {
    position: absolute;
    width: 75vw;
    overflow: hidden;
    border-bottom: 1px solid #efefef;
    top: 15px;
}

.large {
    font-size: 18px !important;
}

pre {
    margin: 0px 10px 10px;
    line-height: 18px;
    font-family: monospace;
}

i {
    display: inline-block;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    -webkit-font-smoothing: none;
}

.largeBut {
    font-size: 20px;
}

.success_blue {
    color: #1BA1E2;
}

.success_green {
    color: #339933;
}

.warning_col {
    color: #F8A800;
}

.error_col {
    color: #BA141A;
}

.success {
    background: #F5F5F5;
    color: #222;
    border: 1px solid #E6E6E6;

}

.success_confirm {
    background: #EFF8FD;
    color: #222;
    border: 1px solid #D8EFFA;

}

.warning {
    background: #FFF9EE;
    color: #222;
    border: 1px solid #FEF0D4;
}

.error {
    background: #FDF2F3;
    color: #222;
    border: 1px solid #F9D5D3;
}

.form-section>p:first-child {
    padding: 0 0 8px 0;
}

@media only screen and (max-width: 767px) {

    body {
        font-size: 16px;
        padding: 10px;
    }

    .container {
        max-width: 100%;
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .header-icon img {
        display: none;
    }

    form {
        padding: 10px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    button {
        font-size: 1rem;
    }

    .radio-container {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 35px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .radio-option {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .radio-option svg {
        margin-right: 10px;
    }

    svg {
        width: 80px;
        margin: 0;
    }

    p {
        margin: 10px 0;
    }

}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}