.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 383px;
    height: 54px;
    color: #FFFFFF;
    background: #00AC86;
    border-radius: 32px;
    transition: background-color 0.3s ease-in-out;
    border: none;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.btn:hover {
    background-color: rgba(2, 157, 122, 1);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 54px;
    gap: 24px;
}

.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 202px;
    height: 54px;
    background-color: #00AC86;
    border-radius: 32px;
    font-style: normal;
    font-weight: 560;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.3;
    transition: opacity 0.2s ease;
    cursor: not-allowed;
    border: none;
}

.submit-button.active {
    opacity: 1;
    cursor: pointer;
}
