* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fefefe;
    color: #111827;
}

#header {
    position: relative;
    background: #f7f8e8;
    padding: 1rem 2rem;
}

#header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #f7f8e8, transparent);
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #eef0d1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header img,
.form-body img {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    height: auto;
}

