.form-container {
    width: 100%;
    max-width: 624px;
    margin: 0 auto;
}

.form-item-box .single-input-inner {
    width: 100%;
}

.form-item-box .single-input-inner input {
    width: 100%;
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 48px;
    transition: border-color 400ms ease 0ms, box-shadow 400ms ease 0ms;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
    padding: 15px 16px;
}

.form-item-box .single-input-inner textarea {
    border-radius: 4px;
    padding: 12px;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 104px;
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    transition: border-color 400ms ease 0ms, box-shadow 400ms ease 0ms;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

.form-item-box .single-input-inner input:focus {
    outline: none;
    background-color: #fff;
    border-color: #000;
    color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}

.form-item-box .single-input-inner textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: #000;
    color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}

.error-tip {
    display: none;
    color: #eb5353;
}

.error-tip2 {
    display: none;
    color: #eb5353;
}

.form-btn {
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    background-color: #58D8AE;
    color: #000;
    border: 1px solid #58D8AE;
    transition: background-color 200ms ease 0ms, border-color 200ms ease 0ms, color 200ms ease 0ms, outline 200ms ease 0ms;
    display: inline-grid;
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 11px 24px;
}

.form-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000
}

.error .single-input-inner input {
    border-color: #eb5353;
    color: #000;
    background-color: #fff;
}

.error .single-input-inner textarea {
    border-color: #eb5353;
    color: #000;
    background-color: #fff;
}

.error .single-input-inner input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f8c6c6;
    border-color: #eb5353;
    color: #000;
    background-color: #fff;
}

.error .single-input-inner textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #f8c6c6;
    border-color: #eb5353;
    color: #000;
    background-color: #fff;
}

.error .error-tip {
    display: block;
}

.error2 .error-tip2 {
    display: block;
}

.success .single-input-inner input {
    border-color: #58d8ae;
    color: #000;
    background-color: #fff;
}

.success .single-input-inner textarea {
    border-color: #58d8ae;
    color: #000;
    background-color: #fff;
}

.success .single-input-inner input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #e9faf4;
    border-color: #58d8ae;
    color: #000;
    background-color: #fff;
}

.success .single-input-inner textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #e9faf4;
    border-color: #58d8ae;
    color: #000;
    background-color: #fff;
}

#successMsg {
    color: #fff;
    display: inline-block;
    width: auto;
    padding: 11px 24px;
    background-color:green ;
    display: none;
    border-radius: 10px;
}