.cf-62f839e7-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.cf-62f839e7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.cf-62f839e7-field-group {
    width: 100%;
}

.cf-62f839e7-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.cf-62f839e7-input:focus {
    border-color: #357ae8;
}

.cf-62f839e7-textarea {
    resize: vertical;
    min-height: 120px;
}

.cf-62f839e7-submit-wrapper {
    display: flex;
}

.cf-62f839e7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
    position: relative;
}

.cf-62f839e7-submit:active {
    transform: scale(0.98);
}

.cf-62f839e7-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cf-62f839e7-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: cf-spin-62f839e7 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes cf-spin-62f839e7 {
    to { transform: rotate(360deg); }
}

.cf-62f839e7-submit.cf-loading .cf-62f839e7-loader {
    display: inline-block;
}

.cf-62f839e7-feedback-message {
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
    margin-top: 10px;
}

.cf-62f839e7-feedback-message.cf-success {
    display: block;
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #dadce0;
}

.cf-62f839e7-feedback-message.cf-error {
    display: block;
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #dadce0;
}
